32 lines
654 B
Plaintext
32 lines
654 B
Plaintext
# Description: Filesystem utilities for XFS
|
|
# URL: https://xfs.wiki.kernel.org/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: inih libdevmapper liburcu
|
|
|
|
name=xfsprogs
|
|
version=6.12.0
|
|
release=1
|
|
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 \
|
|
--localstatedir=/var \
|
|
--disable-gettext \
|
|
--disable-libicu
|
|
make
|
|
make -j1 DIST_ROOT=$PKG install install-dev
|
|
|
|
install -d $PKG/sbin
|
|
mv $PKG/usr/sbin/{fsck.xfs,xfs_repair} $PKG/sbin
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|