2006-02-23 15:26:10 +00:00
|
|
|
# Description: Filesystem utilities for XFS
|
|
|
|
# URL: http://oss.sgi.com/projects/xfs/
|
2007-01-23 17:25:18 +00:00
|
|
|
# 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 15:26:10 +00:00
|
|
|
|
|
|
|
name=xfsprogs
|
2012-03-24 10:48:12 +01:00
|
|
|
version=3.1.8
|
2006-02-23 15:26:10 +00: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 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2009-05-06 14:47:01 +02:00
|
|
|
|
2006-06-21 15:25:37 +00:00
|
|
|
export DEBUG=-DNDEBUG
|
2009-05-06 14:47:01 +02:00
|
|
|
export OPTIMIZER=$CFLAGS
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
2010-01-21 16:54:55 +01:00
|
|
|
--disable-gettext
|
2009-05-06 14:47:01 +02:00
|
|
|
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
|
|
|
|
|
2009-05-06 14:47:01 +02:00
|
|
|
rm -r $PKG/usr/share
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|