summaryrefslogtreecommitdiff
path: root/repo/system/argp-standalone.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/argp-standalone.xibuild')
-rw-r--r--repo/system/argp-standalone.xibuild12
1 files changed, 7 insertions, 5 deletions
diff --git a/repo/system/argp-standalone.xibuild b/repo/system/argp-standalone.xibuild
index c393169..4c2a722 100644
--- a/repo/system/argp-standalone.xibuild
+++ b/repo/system/argp-standalone.xibuild
@@ -1,10 +1,10 @@
#!/bin/sh
MAKEDEPS=""
-DEPS=""
+DEPS="musl"
-PKG_VER=
-SOURCE=https://github.com/ericonr/argp-standalone/archive/$PKG_VER.tar.gz
+PKG_VER=1.3
+SOURCE=https://www.lysator.liu.se/~nisse/misc/argp-standalone-$PKG_VER.tar.gz
DESC="Standalone implementation for the argp interface"
@@ -18,7 +18,9 @@ build () {
}
package () {
- cp -v libargp.a $PKG_DEST/usr/lib/
- cp -v argp.h $PKG_DEST/usr/include/
+ install -d $PKG_DEST/usr/lib
+ install -d $PKG_DEST/usr/include
+ cp libargp.a $PKG_DEST/usr/lib/
+ cp argp.h $PKG_DEST/usr/include/
}