summaryrefslogtreecommitdiff
path: root/repo/system/attr
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/attr')
-rw-r--r--repo/system/attr/attr.xibuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/repo/system/attr/attr.xibuild b/repo/system/attr/attr.xibuild
new file mode 100644
index 0000000..bbd9a27
--- /dev/null
+++ b/repo/system/attr/attr.xibuild
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+MAKEDEPS="make"
+DEPS="musl"
+
+PKG_VER=2.5.1
+SOURCE=http://download.savannah.nongnu.org/releases/attr/attr-$PKG_VER.tar.xz
+
+DESC="Extended attribute support library for ACL support"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --disable-static \
+ --sysconfdir=/etc \
+ --docdir=/usr/share/doc/attr-$PKG_VER
+ make
+}
+
+# skip these tests since they require perl
+NO_check () {
+ make check
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}