diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2015-08-01 20:54:33 +0200 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2015-08-01 20:54:33 +0200 |
commit | 0d0788245e269d6dcd206145c297997c879d040c (patch) | |
tree | 1d2be7ecd4107f1e873b34c34deb52d32305eeee /xfsprogs/Pkgfile | |
parent | 20fab2335e8ce61b8fcb937b56258340dd5909d7 (diff) | |
download | opt-0d0788245e269d6dcd206145c297997c879d040c.tar.gz opt-0d0788245e269d6dcd206145c297997c879d040c.tar.xz |
moved btrfs-progs jfsutils ppp reiserfsprogs xfsprogs zip from core
Diffstat (limited to 'xfsprogs/Pkgfile')
-rw-r--r-- | xfsprogs/Pkgfile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/xfsprogs/Pkgfile b/xfsprogs/Pkgfile new file mode 100644 index 000000000..203e7a443 --- /dev/null +++ b/xfsprogs/Pkgfile @@ -0,0 +1,28 @@ +# 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 +} |