blob: 52ce381d5d0a94ada705a8b83a0ff5f1829f4f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
pkgname=libzookeeper-git
pkgver=1.0
pkgrel=1
pkgdesc="zookepper client c install"
arch=('i686' 'x86_64')
url="https://github.com/apache/zookeeper"
license=('Apache')
makedepends=(maven autoconf automake cppunit pkgconf)
checkdepends=()
optdepends=()
provides=(libzookeper-git)
source=("git+https://github.com/apache/zookeeper.git")
sha256sums=('SKIP')
build() {
cd "$srcdir/zookeeper/zookeeper-jute"
mvn compile
cd ../zookeeper-client/zookeeper-client-c
autoreconf -if
./configure --prefix=/usr
}
package() {
cd "$srcdir/zookeeper/zookeeper-client/zookeeper-client-c"
make DESTDIR="$pkgdir/" install
}
|