opt/xfsprogs/Pkgfile

31 lines
669 B
Plaintext
Raw Normal View History

# Description: Filesystem utilities for XFS
2023-05-28 10:22:42 +02:00
# URL: https://xfs.wiki.kernel.org/
2021-03-13 14:18:47 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: inih libdevmapper liburcu
name=xfsprogs
2024-04-17 10:39:23 +02:00
version=6.7.0
2023-01-15 10:54:37 +01:00
release=1
2023-01-05 11:14:42 +01:00
source=(https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/$name-$version.tar.xz)
build() {
2021-03-13 14:18:47 +01:00
cd $name-$version
2021-03-13 14:18:47 +01:00
make configure
2021-03-13 14:18:47 +01:00
export DEBUG=-DNDEBUG
export OPTIMIZER=$CFLAGS
2021-03-13 14:18:47 +01:00
./configure \
--prefix=/usr \
--disable-gettext \
--disable-libicu
make
make -j1 DIST_ROOT=$PKG install install-dev
2021-03-13 14:18:47 +01:00
rm $PKG/lib/libhandle.{so,a,la}
ln -sf ../../lib/$(readlink $PKG/lib/libhandle.so.1) $PKG/usr/lib/libhandle.so
2024-02-05 17:03:57 +01:00
rm -r $PKG/usr/share/doc
}