opt/xfsprogs/Pkgfile

31 lines
629 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-08-27 11:45:07 +02:00
version=6.10.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
2024-08-27 11:45:07 +02:00
install -d $PKG/sbin
mv $PKG/usr/sbin/{fsck.xfs,xfs_repair} $PKG/sbin
2024-02-05 17:03:57 +01:00
rm -r $PKG/usr/share/doc
}