76 lines
2.1 KiB
Bash
76 lines
2.1 KiB
Bash
# Template file for 'glusterfs'
|
|
pkgname=glusterfs
|
|
version=9.6
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="
|
|
--with-mountutildir=/usr/bin
|
|
ac_cv_file__etc_debian_version=no
|
|
ac_cv_file__etc_SuSE_release=no
|
|
ac_cv_file__etc_redhat_release=no
|
|
ac_cv_file__etc_centos_release=no
|
|
am_cv_python_version=${py3_ver}
|
|
"
|
|
pycompile_dirs="/usr/libexec/glusterfs/python/syncdaemon"
|
|
hostmakedepends="flex pkg-config python3-setuptools rpcsvc-proto"
|
|
makedepends="acl-devel libaio-devel libtirpc-devel openssl-devel
|
|
liburcu-devel liburing-devel libxml2-devel rdma-core-devel sqlite-devel"
|
|
# python is required by gsyncd.
|
|
depends="python3"
|
|
short_desc="Free and open source software scalable network filesystem (client)"
|
|
maintainer="Noel Cower <ncower@nil.dev>"
|
|
license="GPL-2.0-or-later, LGPL-3.0-only"
|
|
homepage="https://www.gluster.org/"
|
|
distfiles="https://download.gluster.org/pub/gluster/glusterfs/${version%.*}/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=55ebe404ca887e387b1b6ecf952400f795be275f475295014dfc7ad4c1ed1464
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) broken="not yet supported";;
|
|
esac
|
|
|
|
post_extract() {
|
|
# The py-compile helper uses the imp module, removed in Python 3.12;
|
|
# besides, we don't want the module pre-compiled anyway, so just drop it
|
|
: > py-compile
|
|
cat > py-compile <<-'EOF'
|
|
#!/bin/sh
|
|
: "$@"
|
|
EOF
|
|
}
|
|
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/var ${DESTDIR}/usr/share/glusterfs/scripts/gsync-sync-gfid
|
|
vsv glusterfsd
|
|
}
|
|
|
|
glusterfs-server_package() {
|
|
short_desc="${short_desc/client/server}"
|
|
depends="glusterfs-${version}_${revision}"
|
|
conf_files="
|
|
/etc/glusterfs/glusterfs-logrotate
|
|
/etc/glusterfs/glusterd.vol"
|
|
pkg_install() {
|
|
vmove etc/glusterfs
|
|
vmove usr/bin/gluster
|
|
vmove usr/bin/glusterd
|
|
vmove usr/share/man/man8/gluster.8
|
|
vmove usr/share/man/man8/glusterd.8
|
|
vsv glusterd
|
|
}
|
|
}
|
|
glusterfs-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libglusterfs>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
libglusterfs_package() {
|
|
short_desc+=" - runtime libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|