core/xfsprogs/Pkgfile

28 lines
666 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Filesystem utilities for XFS
# URL: http://oss.sgi.com/projects/xfs/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2009-06-30 13:41:13 +02:00
# Depends on: util-linux-ng
2006-02-23 16:26:10 +01:00
name=xfsprogs
2012-03-24 10:48:12 +01:00
version=3.1.8
2006-02-23 16:26:10 +01:00
release=1
2010-01-21 16:54:55 +01:00
source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-06-21 17:25:37 +02:00
export DEBUG=-DNDEBUG
export OPTIMIZER=$CFLAGS
./configure --prefix=/usr \
--mandir=/usr/man \
2010-01-21 16:54:55 +01:00
--disable-gettext
make
make DIST_ROOT=$PKG install install-dev
2010-01-21 16:54:55 +01:00
rm $PKG/lib/libhandle.{a,la,so}
ln -sf ../../lib/libhandle.so.1.0.3 $PKG/usr/lib/libhandle.so
rm -r $PKG/usr/share
2006-02-23 16:26:10 +01:00
}