summaryrefslogtreecommitdiff
path: root/repo/system/popt.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-18 16:44:12 +0000
committerdavidovski <david@davidovski.xyz>2022-01-18 16:44:12 +0000
commit305e6df47eb5b354ac2321639ccda7f7d59a9d4b (patch)
tree9323e70ca2ccfae76120a37d24f4598c6c261b63 /repo/system/popt.xibuild
parent62e6db1a0d4a1708867131473c9f48e2d8c9d523 (diff)
added popt
Diffstat (limited to 'repo/system/popt.xibuild')
-rw-r--r--repo/system/popt.xibuild16
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/system/popt.xibuild b/repo/system/popt.xibuild
new file mode 100644
index 0000000..bdfabfd
--- /dev/null
+++ b/repo/system/popt.xibuild
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+DEPS=()
+
+PKG_VER=1.18
+SOURCE=http://ftp.rpm.org/popt/releases/popt-1.x/popt-$PKG_VER.tar.gz
+DESC="Libraries for parsing command line options"
+
+build () {
+ ./configure --prefix=/usr --disable-static &&
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}