summaryrefslogtreecommitdiff
path: root/repo/system/argp-standalone.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-02-27 00:55:34 +0000
committerdavidovski <david@davidovski.xyz>2022-02-27 00:55:34 +0000
commit79c82d8fc0a4f6618429a0373bb832afd105543e (patch)
tree81353122644b10b2c3d5be52bf3524890cbc377b /repo/system/argp-standalone.xibuild
parent7e7775ad670c99b2823d812c782f6ff258e79b9b (diff)
added all missing libraries and headers that musl doesnt have
Diffstat (limited to 'repo/system/argp-standalone.xibuild')
-rw-r--r--repo/system/argp-standalone.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/system/argp-standalone.xibuild b/repo/system/argp-standalone.xibuild
new file mode 100644
index 0000000..c393169
--- /dev/null
+++ b/repo/system/argp-standalone.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+MAKEDEPS=""
+DEPS=""
+
+PKG_VER=
+SOURCE=https://github.com/ericonr/argp-standalone/archive/$PKG_VER.tar.gz
+
+DESC="Standalone implementation for the argp interface"
+
+build () {
+ CFLAGS=" -fPIC" ./configure \
+ --prefix=/usr \
+ --disable-static \
+ --sysconfdir=/etc \
+ --localstatedir=/var &&
+ make
+}
+
+package () {
+ cp -v libargp.a $PKG_DEST/usr/lib/
+ cp -v argp.h $PKG_DEST/usr/include/
+}
+