opt/btrfs-progs/Pkgfile

29 lines
698 B
Plaintext

# Description: Filesystem utilities for btrfs
# URL: http://btrfs.wiki.kernel.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: lzo util-linux zstd
name=btrfs-progs
version=6.2.1
release=1
source=(https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$version.tar.xz)
build() {
cd $name-v$version
./autogen.sh
./configure \
--prefix=/usr \
--bindir=/sbin \
--disable-convert \
--disable-zoned \
--disable-python \
--disable-documentation
make
make DESTDIR=$PKG install
install -d $PKG/usr/share/man/man{5,8}
install -m 644 Documentation/*.5 $PKG/usr/share/man/man5
install -m 644 Documentation/*.8 $PKG/usr/share/man/man8
}