opt/xfsprogs/Pkgfile

30 lines
742 B
Plaintext
Raw Normal View History

# Description: Filesystem utilities for XFS
2020-06-06 13:07:30 +02:00
# URL: https://xfs.org/index.php/Main_Page
# Maintainer: CRUX System Team, core-ports at crux dot nu
2020-07-25 12:28:18 +02:00
# Depends on: libdevmapper
name=xfsprogs
2020-09-06 01:39:28 +02:00
version=5.8.0
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 \
--disable-libicu
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
2018-08-25 14:15:31 +02:00
rm -r $PKG/usr/{share/doc,lib/xfsprogs}
}