From e8213fac46bfcb8068a883cb88b2bb1587f190f9 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 1 Mar 2022 21:25:54 +0000 Subject: made packages work with musl --- repo/system/argp-standalone.xibuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'repo/system/argp-standalone.xibuild') 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/ } -- cgit v1.2.1