core/xfsprogs/Pkgfile

30 lines
684 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
# Depends on: util-linux
2006-02-23 16:26:10 +01:00
name=xfsprogs
2013-05-12 10:46:02 +02:00
version=3.1.11
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() {
2012-12-13 19:03:53 +01:00
cd $name-$version
2012-12-13 16:43:53 +01:00
make configure
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
}