# 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=7.0.1
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 \
        --libexecdir=/usr/lib \
        --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
}
