63 lines
1.6 KiB
Bash
63 lines
1.6 KiB
Bash
# Template file for 'btrfs-progs'
|
|
pkgname=btrfs-progs
|
|
version=4.13.3
|
|
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=805bdb0031c21a0a5d2ba295a8c9bdd8ba831a68c3fa801aab85677ec902d783
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
pre_build() {
|
|
if [ $CROSS_BUILD ]; then
|
|
${BUILD_CC} ${BUILD_CFLAGS} kernel-lib/mktables.c -o mktables
|
|
fi
|
|
}
|
|
|
|
do_check() {
|
|
make fssum && # required by [TEST/misc] 019-recieve-clones-on-munted-subvol
|
|
|
|
# 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}
|
|
|
|
pushd tests
|
|
./fsck-tests.sh
|
|
./mkfs-tests.sh
|
|
./cli-tests.sh
|
|
./convert-tests.sh
|
|
./misc-tests.sh
|
|
./fuzz-tests.sh
|
|
popd
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|