opt/xfsprogs/Pkgfile

29 lines
665 B
Plaintext

# Description: Filesystem utilities for XFS
# URL: http://oss.sgi.com/projects/xfs/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: util-linux
name=xfsprogs
version=3.2.3
release=2
source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/$name-$version.tar.gz)
build() {
cd $name-$version
make configure
export DEBUG=-DNDEBUG
export OPTIMIZER=$CFLAGS
./configure --prefix=/usr \
--disable-gettext
make
make -j1 DIST_ROOT=$PKG install install-dev
rm $PKG/lib/libhandle.so
ln -sf ../../lib/$(readlink $PKG/lib/libhandle.so.1) $PKG/usr/lib/libhandle.so
rm -r $PKG/usr/share/doc
}