54 lines
1.5 KiB
Bash
54 lines
1.5 KiB
Bash
# Template file for 'btrfs-progs'
|
|
pkgname=btrfs-progs
|
|
version=4.14
|
|
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=09095cbc3bc2b6aa9d09c93146fb4d7437c51d2572f6918b74fe990fcdcb91af
|
|
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}
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|