New package: glusterfs-3.4.1.
This commit is contained in:
parent
d8073e6fed
commit
83efa855c3
5 changed files with 73 additions and 0 deletions
|
@ -1431,3 +1431,7 @@ libmonosgen-2.0.so.1 mono-3.2.3_1
|
|||
libshout-idjc.so.3 libshout-idjc-2.3.1_1
|
||||
libpolarssl.so.5 libpolarssl-1.3.1_1
|
||||
libmonoboehm-2.0.so.1 mono-3.2.3_1
|
||||
libglusterfs.so.0 libglusterfs-3.4.1_1
|
||||
libgfrpc.so.0 libglusterfs-3.4.1_1
|
||||
libgfxdr.so.0 libglusterfs-3.4.1_1
|
||||
libgfapi.so.0 libglusterfs-3.4.1_1
|
||||
|
|
1
srcpkgs/glusterfs-devel
Symbolic link
1
srcpkgs/glusterfs-devel
Symbolic link
|
@ -0,0 +1 @@
|
|||
glusterfs
|
12
srcpkgs/glusterfs/files/glusterd.service
Normal file
12
srcpkgs/glusterfs/files/glusterd.service
Normal file
|
@ -0,0 +1,12 @@
|
|||
[Unit]
|
||||
Description=Distributed filesystem daemon
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
PIDFile=/run/glusterd.pid
|
||||
LimitNOFILE=65536
|
||||
ExecStart=/usr/bin/glusterd -p /run/glusterd.pid
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
55
srcpkgs/glusterfs/template
Normal file
55
srcpkgs/glusterfs/template
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Template file for 'glusterfs'
|
||||
pkgname=glusterfs
|
||||
version=3.4.1
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--sbindir=/usr/bin --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"
|
||||
hostmakedepends="pkg-config python flex automake libtool"
|
||||
makedepends="fuse-devel libxml2-devel libfl-devel openssl-devel readline-devel python"
|
||||
short_desc="Distributed file system capable of scaling to several petabytes"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
license="GPL-2, LGPL-3"
|
||||
homepage="http://www.gluster.org/"
|
||||
distfiles="http://download.gluster.org/pub/gluster/glusterfs/${version%.*}/${version}/${pkgname}-${version}.tar.gz"
|
||||
checksum=b5f1b4e3c6b86ecdfc5ff1b870ae3d3384bb2e3943565d6907c29ee6e21ab739
|
||||
|
||||
pre_configure() {
|
||||
autoreconf -fi
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vinstall ${FILESDIR}/glusterd.service 644 usr/lib/systemd/system
|
||||
rm -rf ${DESTDIR}/var
|
||||
}
|
||||
|
||||
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.*"
|
||||
}
|
||||
}
|
||||
|
||||
glusterfs_package() {
|
||||
# python is required by gsyncd.
|
||||
depends="python"
|
||||
pycompile_dirs="/usr/libexec/glusterfs/python/syncdaemon"
|
||||
systemd_services="glusterd.service on"
|
||||
conf_files="
|
||||
/etc/glusterfs/glusterfs-logrotate
|
||||
/etc/glusterfs/glusterd.vol"
|
||||
pkg_install() {
|
||||
vmove all
|
||||
}
|
||||
}
|
1
srcpkgs/libglusterfs
Symbolic link
1
srcpkgs/libglusterfs
Symbolic link
|
@ -0,0 +1 @@
|
|||
glusterfs
|
Loading…
Reference in a new issue