blob: 6378a6d667a2ff9124b8060f6d55b8981d8551a8 (
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
|
# Maintainer: Christoph Grabo <asaaki at mannaz dot cc>
# Contributor: Christoph Grabo <asaaki at mannaz dot cc>
pkgname=arangodb
pkgver=2.7.3
pkgrel=1
pkgdesc="A distributed open-source database with a flexible data model for documents, graphs, and key-values."
license=("Apache")
url="https://www.arangodb.com/"
provides=("arangodb=$pkgver")
conflicts=("arangodb-git")
depends=("glibc" "gcc-libs" "openssl" "readline" "systemd" "icu")
makedepends=("python2" "go>=1.4")
arch=("i686" "x86_64")
install=arangodb.install
source=( "https://www.arangodb.com/repositories/Source/ArangoDB-${pkgver}.tar.bz2"
'arangodb.service')
sha256sums=('6738a498a7df82eb78dacb5299ab184f80190f037e0fd504b05cf7924ac193e6'
'8b244e30c69dac28c12fa080b4ee7c4256977e8a8a6ffa342432ae48e35a9b12')
build() {
msg2 "Python2 link"
ln -s -f /usr/bin/python2 python
export PATH="`pwd`:$PATH"
msg2 "Configure ArangoDB project ..."
cd $srcdir/ArangoDB-$pkgver
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-mruby
msg2 "Build ArangoDB project ..."
make
}
check() {
cd $srcdir/ArangoDB-$pkgver
make -k check
}
package() {
msg2 "Prepare ArangoDB installation ..."
cd $srcdir/ArangoDB-$pkgver
make DESTDIR="$pkgdir/" install
mkdir -p $pkgdir/usr/share/doc/arangodb
cp -R $srcdir/ArangoDB-$pkgver/Documentation/* $pkgdir/usr/share/doc/arangodb/
msg2 "Prepare systemd service setup ..."
mkdir -p $pkgdir/usr/lib/systemd/system
cp $srcdir/arangodb.service $pkgdir/usr/lib/systemd/system/
msg2 "Done!"
}
|