diff options
Diffstat (limited to 'repo/system/argp-standalone.xibuild')
-rw-r--r-- | repo/system/argp-standalone.xibuild | 24 |
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/ +} + |