core/xfsprogs/Pkgfile

30 lines
704 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
2015-09-09 16:31:14 +02:00
version=4.2.0
2013-05-12 10:46:02 +02: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() {
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
2014-05-18 19:47:05 +02:00
make -j1 DIST_ROOT=$PKG install install-dev
2015-09-09 16:31:14 +02:00
rm $PKG/lib/libhandle.{so,a,la}
2014-05-18 19:47:05 +02:00
ln -sf ../../lib/$(readlink $PKG/lib/libhandle.so.1) $PKG/usr/lib/libhandle.so
2010-01-21 16:54:55 +01:00
rm -r $PKG/usr/share
2006-02-23 16:26:10 +01:00
}