opt/xfsprogs/Pkgfile

30 lines
722 B
Plaintext
Raw Normal View History

# Description: Filesystem utilities for XFS
2018-01-28 17:54:37 +01:00
# URL: http://www.xfs.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: util-linux
name=xfsprogs
2018-02-27 21:09:58 +01:00
version=4.15.1
release=1
2017-02-17 12:53:58 +01:00
source=(https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/$name-$version.tar.xz)
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
2015-11-26 17:38:06 +01:00
rm $PKG/lib/libhandle.{so,a,la}
ln -sf ../../lib/$(readlink $PKG/lib/libhandle.so.1) $PKG/usr/lib/libhandle.so
rm -r $PKG/usr/share/doc
2018-02-24 22:46:44 +01:00
rm $PKG/usr/lib/xfsprogs/xfs_scrub_all.cron
}