46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
# Template file for 'zookeeper'
|
|
pkgname=zookeeper
|
|
version=3.4.12
|
|
revision=1
|
|
noarch=yes
|
|
short_desc="A dristributed hierarchical key-value store"
|
|
maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="http://zookeeper.apache.org/"
|
|
distfiles="http://mirrors.ircam.fr/pub/apache/zookeeper/stable/zookeeper-${version}.tar.gz"
|
|
checksum=c686f9319050565b58e642149cb9e4c9cc8c7207aacc2cb70c5c0672849594b9
|
|
depends="virtual?java-runtime"
|
|
system_accounts="_zookeeper"
|
|
|
|
do_install() {
|
|
# License
|
|
vlicense LICENSE.txt
|
|
|
|
# Documentation
|
|
vmkdir usr/share/doc/${pkgname}
|
|
vcopy docs usr/share/doc/${pkgname}
|
|
|
|
# Configuration example
|
|
vmkdir usr/share/examples/${pkgname}
|
|
vcopy conf usr/share/examples/${pkgname}
|
|
|
|
# Default configuration
|
|
vmkdir etc/${pkgname}/conf
|
|
vcopy conf/zoo_sample.cfg etc/${pkgname}/conf/environment
|
|
|
|
# Main class
|
|
vmkdir usr/share/${pkgname}
|
|
vcopy ${pkgname}-${version}.jar usr/share/${pkgname}
|
|
|
|
# Tools
|
|
vmkdir usr/share/${pkgname}/bin
|
|
vcopy bin/*.sh usr/share/${pkgname}/bin
|
|
|
|
# Classpath
|
|
vmkdir usr/share/${pkgname}/lib
|
|
vcopy lib/* usr/share/${pkgname}/lib
|
|
|
|
# Service
|
|
vsv ${pkgname}
|
|
}
|