summaryrefslogtreecommitdiff
path: root/repo/system/attr/attr.xibuild
blob: bbd9a2714ec091bc9ba6f53213eb57db225f4479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
}