summaryrefslogtreecommitdiff
path: root/repo/devel/autoconf
diff options
context:
space:
mode:
Diffstat (limited to 'repo/devel/autoconf')
-rw-r--r--repo/devel/autoconf/autoconf.xibuild17
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/devel/autoconf/autoconf.xibuild b/repo/devel/autoconf/autoconf.xibuild
new file mode 100644
index 0000000..8068345
--- /dev/null
+++ b/repo/devel/autoconf/autoconf.xibuild
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+MAKEDEPS="make"
+DEPS="gawk m4 diffutils perl sh gettext"
+
+PKG_VER=2.71
+SOURCE=https://ftp.gnu.org/gnu/autoconf/autoconf-$PKG_VER.tar.xz
+DESC="GNU programs for producing shell scripts that can automatically configure source code"
+
+build () {
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}