opt/btrfs-progs/Pkgfile

24 lines
526 B
Plaintext
Raw Normal View History

# Description: Filesystem utilities for btrfs
2021-03-08 13:30:29 +01:00
# URL: http://btrfs.wiki.kernel.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: lzo zstd util-linux
name=btrfs-progs
2022-08-17 12:04:15 +02:00
version=5.19
release=1
2017-08-20 22:06:36 +02:00
source=(https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$version.tar.xz)
build() {
2017-08-20 22:06:36 +02:00
cd $name-v$version
2021-01-26 14:02:56 +01:00
./configure \
--prefix=/usr \
2017-08-20 22:06:36 +02:00
--bindir=/sbin \
--disable-documentation \
2021-01-26 14:02:56 +01:00
--disable-convert \
2021-05-13 16:09:05 +02:00
--disable-zoned \
2021-01-26 14:02:56 +01:00
--disable-python
2017-08-20 22:06:36 +02:00
make
make DESTDIR=$PKG install
}