blob: 6aa967379aa9bcd1211c8ebb684060241b34c053 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | #!/bin/bash
DEPS=(glibc)
SOURCE=http://download.savannah.nongnu.org/releases/attr/attr-2.5.1.tar.xz
DESC="Extended attribute support library for ACL support"
build () {
    ./configure --prefix=/usr --disable-static --sysconfdir=/etc --docdir=/usr/share/doc/attr-2.5.1
    make
    make check
    make DESTDIR=$PKG_DEST install
}
 |