blob: 6c5c4b0dd7c2e3c7df27a700b01b11532a3d8e5f (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Contributor: Nathan Johnson <nathan@nathanjohnson.info>
# Maintainer: Nathan Johnson <nathan@nathanjohnson.info>
pkgname=libcouchbase
pkgver=2.10.3
pkgrel=1
pkgdesc="C client library for Couchbase"
url="https://developer.couchbase.com/community"
arch="all"
license="Apache-2.0"
depends_dev="musl-dev openssl-dev snappy-dev"
makedepends="$depends_dev cmake perl libtool libev-dev libevent-dev libuv-dev"
subpackages="$pkgname-dev $pkgname-bin $pkgname-doc $pkgname-libevent $pkgname-libev $pkgname-libuv"
source="$pkgname-$pkgver.tar.gz::https://github.com/couchbase/libcouchbase/archive/$pkgver.tar.gz
fix_socktest.patch"
builddir="$srcdir/$pkgname-$pkgver"
build() {
mkdir "$builddir"/build
cd "$builddir"/build
../cmake/configure \
--prefix=/usr \
--skip-git-version \
--disable-couchbasemock
make
}
check() {
cd "$builddir"/build
ctest
}
package() {
cd "$builddir"/build
make install DESTDIR="$pkgdir"
}
dev() {
default_dev
mv "$subpkgdir"/usr/bin/cbc-write-config \
"$pkgdir"/usr/bin
rmdir "$subpkgdir"/usr/bin
}
libevent() {
pkgdesc="$pkgdesc (libevent backend)"
depends="$pkgname libevent"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libcouchbase_libevent.so "$subpkgdir"/usr/lib
}
libev() {
pkgdesc="$pkgdesc (libev backend)"
depends="$pkgname libev"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libcouchbase_libev.so "$subpkgdir"/usr/lib
}
libuv() {
pkgdesc="$pkgdesc (libuv backend)"
depends="$pkgname libuv"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libcouchbase_libuv.so "$subpkgdir"/usr/lib
}
bin() {
pkgdesc="$pkgdesc (command line utilities)"
depends="$pkgname"
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
sha512sums="ec323d4a5de44c7293003ebc5ddfc8004c7a0ce8b268459a2216ce548545cc86c83c1207c25d57c8a5c57a866a2011639fcee0c9ac46c7ca6e71bfec0a6b3020 libcouchbase-2.10.3.tar.gz
72319b86fdd91728723ccb091e72199788a84e2ec9ea12c0fcd1ed686eb155ec11e0addbff96735f83e7f31764a85650f0483b6e76d3a8bee16f71b2751fe4a9 fix_socktest.patch"
|