summaryrefslogtreecommitdiff
path: root/repo/musl-fts
diff options
context:
space:
mode:
Diffstat (limited to 'repo/musl-fts')
-rw-r--r--repo/musl-fts/musl-fts.xibuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/musl-fts/musl-fts.xibuild b/repo/musl-fts/musl-fts.xibuild
new file mode 100644
index 0000000..508f84c
--- /dev/null
+++ b/repo/musl-fts/musl-fts.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+MAKEDEPS="libtool"
+DEPS="musl"
+
+PKG_VER=1.2.7
+SOURCE=https://github.com/pullmoll/musl-fts/archive/v$PKG_VER.tar.gz
+
+DESC="Libraries implementing the set of fts functions missing in musl libc"
+
+prepare () {
+ sed -i "/pkgconfig_DATA/i pkgconfigdir=/usr/lib/pkgconfig" Makefile.am
+ ./bootstrap.sh
+}
+
+build () {
+ CFLAGS=" -fPIC" \
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}