diff options
author | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
commit | cb447620084a20be80d116c81c2e9ec110be7118 (patch) | |
tree | 9fc0d714abbb5c6326b60616a5fd27ec9f984895 /repo/devel/automake.xibuild | |
parent | 153011e9129c6055ef21c48caf65a23e74a91418 (diff) |
restructured repo system
Diffstat (limited to 'repo/devel/automake.xibuild')
-rw-r--r-- | repo/devel/automake.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/devel/automake.xibuild b/repo/devel/automake.xibuild new file mode 100644 index 0000000..f83fc62 --- /dev/null +++ b/repo/devel/automake.xibuild @@ -0,0 +1,18 @@ +#!/bin/bash + +DEPS=(perl bash) + +SOURCE=https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.xz +DESC="A GNU tool for automatically creating Makefiles" + +build () { + ./configure --prefix=/usr -docdir=/usr/share/doc/automake-1.16.5 + make + make -j4 check + make DESTDIR=$PKG_DEST install +} + +package () { + # backwards compatibility? + ln -s /usr/bin/aclocal $PKG_DEST/usr/bin/aclocal-1.15 +} |