27 lines
832 B
Bash
27 lines
832 B
Bash
# Template file for 'moosefs'
|
|
pkgname=moosefs
|
|
version=3.0.103
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--localstatedir=/var/lib --with-default-user=_mfs --with-default-group=_mfs"
|
|
hostmakedepends="automake libtool pkg-config"
|
|
makedepends="zlib-devel libpcap-devel fuse-devel"
|
|
system_accounts="_mfs"
|
|
short_desc="A fault tolerant, network distributed file system"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="http://moosefs.org/"
|
|
distfiles="http://ppa.moosefs.com/src/moosefs-${version}-1.tar.gz"
|
|
checksum=d8dc9fb7fb72b6f6991e422cbd32320811fa40207c5ced14aebb0ad89dd6af43
|
|
|
|
pre_configure() {
|
|
sed -i 's,AC_RUN_IFELSE,AC_LINK_IFELSE,g' configure.ac
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/bin
|
|
for f in chunkserver master metalogger; do
|
|
vsv mfs${f}
|
|
done
|
|
}
|