28 lines
604 B
Plaintext
28 lines
604 B
Plaintext
# Description: Extented attributes library
|
|
# URL: http://savannah.nongnu.org/projects/attr/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
|
|
name=attr-32
|
|
version=2.4.47
|
|
release=1
|
|
source=(http://download-mirror.savannah.gnu.org/releases/attr/attr-$version.src.tar.gz)
|
|
|
|
build() {
|
|
cd attr-$version
|
|
|
|
export DEBUG=-DNDEBUG
|
|
export OPTIMIZER=$CFLAGS
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--bindir=/bin \
|
|
--mandir=/usr/man \
|
|
--libdir=/usr/lib32 \
|
|
--libexecdir=/usr/lib32
|
|
|
|
make
|
|
make DIST_ROOT=$PKG install install-lib install-dev
|
|
|
|
rm -r $PKG/bin $PKG/usr/{include,man,share}
|
|
}
|