2015-08-01 20:54:33 +02:00
|
|
|
# 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
|
2015-08-01 20:54:33 +02:00
|
|
|
|
|
|
|
name=btrfs-progs
|
2022-06-07 09:34:56 +02:00
|
|
|
version=5.18.1
|
2018-04-08 15:39:04 +02:00
|
|
|
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)
|
2015-08-01 20:54:33 +02:00
|
|
|
|
|
|
|
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 \
|
2018-03-15 21:55:55 +01:00
|
|
|
--disable-documentation \
|
2021-01-26 14:02:56 +01:00
|
|
|
--disable-convert \
|
2021-05-13 14:09:05 +00: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
|
2015-08-01 20:54:33 +02:00
|
|
|
}
|