58 lines
1.7 KiB
Bash
58 lines
1.7 KiB
Bash
# Template file for 'btrfs-progs'
|
|
pkgname=btrfs-progs
|
|
version=4.15.1
|
|
revision=1
|
|
wrksrc=${pkgname}-v${version}
|
|
build_style=gnu-configure
|
|
configure_args="--disable-backtrace"
|
|
hostmakedepends="automake libtool pkg-config asciidoc xmlto"
|
|
makedepends="zlib-devel lzo-devel acl-devel libuuid-devel e2fsprogs-devel zstd-devel"
|
|
checkdepends="util-linux acl-progs e2fsprogs"
|
|
short_desc="Btrfs filesystem utilities"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://btrfs.wiki.kernel.org/"
|
|
distfiles="${KERNEL_SITE}/kernel/people/kdave/${pkgname}/${pkgname}-v${version}.tar.xz"
|
|
checksum=67102ac0d6795f368acc94efaca29b6626d972638790a4a0c9f89a27cd543f96
|
|
make_check_target="test"
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
pre_build() {
|
|
if [ $CROSS_BUILD ]; then
|
|
${BUILD_CC} ${BUILD_CFLAGS} kernel-lib/mktables.c -o mktables
|
|
fi
|
|
}
|
|
|
|
pre_check() {
|
|
# This test requires fallocate but the testsuite detection methods still can't
|
|
# detect it properly so it keeps failing even when util-linux is added to checkdepends
|
|
mv tests/fsck-tests/025-file-extents/test.sh{,.broken}
|
|
|
|
# This one requires perl regex on grep binary which is disabled it fails with
|
|
# grep: support for the -P option is not compiled into this --disable-perl-regexp binary
|
|
mv tests/mkfs-tests/013-reserved-1M-for-single/test.sh{,.broken}
|
|
}
|
|
|
|
post_install() {
|
|
vinstall btrfs-completion 644 /usr/share/bash-completion/completions btrfs
|
|
}
|
|
|
|
libbtrfs_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
libbtrfs-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libbtrfs>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|