40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'nilfs-utils'
|
|
pkgname=nilfs-utils
|
|
version=2.2.7
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--sbindir=/usr/bin --enable-libmount"
|
|
make_install_args="sbindir=/usr/bin"
|
|
hostmakedepends="automake libtool"
|
|
makedepends="libuuid-devel libmount-devel"
|
|
conf_files="/etc/nilfs_cleanerd.conf"
|
|
short_desc="A log-structured file system for Linux - userspace utils"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="GPL-2, LGPL-2.1"
|
|
homepage="http://nilfs.sourceforge.net/"
|
|
distfiles="http://nilfs.sourceforge.net/download/$pkgname-$version.tar.bz2"
|
|
checksum=2cf651c47f65ae1387758d90b0c51e744e2ecce0b1d77e8be9998929f74ac005
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/bin/
|
|
}
|
|
|
|
libnilfs_package() {
|
|
short_desc="NILFS userspace runtime libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
nilfs-utils-devel_package() {
|
|
depends="${makedepends} libnilfs>=${version}_${revision}"
|
|
short_desc="NILFS userspace development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|