From 79c82d8fc0a4f6618429a0373bb832afd105543e Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 27 Feb 2022 00:55:34 +0000 Subject: added all missing libraries and headers that musl doesnt have --- repo/system/argp-standalone.xibuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 repo/system/argp-standalone.xibuild (limited to 'repo/system/argp-standalone.xibuild') 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/ +} + -- cgit v1.2.1