mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
added community/couchdb
This commit is contained in:
parent
6306380456
commit
e837af8a31
5 changed files with 104 additions and 0 deletions
69
community/couchdb/PKGBUILD
Normal file
69
community/couchdb/PKGBUILD
Normal file
|
@ -0,0 +1,69 @@
|
|||
# $Id$
|
||||
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||
# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
|
||||
# Contributor: Michael Fellinger <m.fellinger@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - patch and rebuild rebar on AArch64
|
||||
|
||||
pkgname=couchdb
|
||||
pkgver=2.0.0
|
||||
pkgrel=9
|
||||
pkgdesc="A document-oriented database that can be queried and indexed in a MapReduce fashion using JSON"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://couchdb.apache.org"
|
||||
license=('APACHE')
|
||||
depends=('icu' 'erlang-nox' 'js185' 'openssl-1.0' 'curl' 'util-linux')
|
||||
makedepends=('autoconf-archive' 'git')
|
||||
install=couchdb.install
|
||||
backup=('etc/couchdb/local.ini'
|
||||
'etc/couchdb/vm.args')
|
||||
validpgpkeys=('E0AF0A194D55C84E4A19A801CDB0C0F904F4EE9B'
|
||||
'D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4')
|
||||
source=("http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz"{,.asc}
|
||||
"https://github.com/rebar/rebar/commit/f9b850c428dae6cf6673ff076d863d5b6c343569.patch"
|
||||
"couchdb.service"
|
||||
"couchdb.tmpfiles"
|
||||
"datadirs.ini")
|
||||
md5sums=('402fc02df28a5297a56cedebbae42524'
|
||||
'SKIP'
|
||||
'ed7d01517ab6bc82fce1871715046ae4'
|
||||
'38cea6d9b533a22dadc22538a921c282'
|
||||
'1e254ebe32eeb061be64193bafa35dbf'
|
||||
'cd649a705805e6193ae72aea33a2e4bd')
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/apache-couchdb-$pkgver"
|
||||
sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/overlay/bin/couchdb
|
||||
if [[ $CARCH == aarch64 ]]; then
|
||||
cd src/rebar
|
||||
patch -p1 -i "$srcdir/f9b850c428dae6cf6673ff076d863d5b6c343569.patch"
|
||||
./bootstrap
|
||||
cp rebar ../../bin
|
||||
fi
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/apache-couchdb-$pkgver"
|
||||
./configure
|
||||
make release
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/apache-couchdb-$pkgver"
|
||||
install -dm0755 "$pkgdir"/usr/lib/
|
||||
install -dm0755 "$pkgdir"/etc/couchdb/
|
||||
install -dm0755 "$pkgdir"/var/lib/couchdb/
|
||||
|
||||
cp -r rel/couchdb "$pkgdir"/usr/lib/couchdb
|
||||
mv "$pkgdir"/usr/lib/couchdb/etc/local.ini "$pkgdir"/etc/couchdb/local.ini
|
||||
mv "$pkgdir"/usr/lib/couchdb/etc/vm.args "$pkgdir"/etc/couchdb/vm.args
|
||||
|
||||
# use system erts
|
||||
# rm -rf "$pkgdir"/usr/lib/couchdb/erts-*
|
||||
# _erts=$(cd /usr/lib/erlang/ && ls -1d erts-*)
|
||||
# ln -s /usr/lib/erlang/${_erts} "$pkgdir"/usr/lib/couchdb/${_erts}
|
||||
|
||||
install -Dm0644 "$srcdir"/$pkgname.service "$pkgdir"/usr/lib/systemd/system/$pkgname.service
|
||||
install -Dm0644 "$srcdir"/datadirs.ini "$pkgdir"/usr/lib/couchdb/etc/datadirs.ini
|
||||
}
|
16
community/couchdb/couchdb.install
Normal file
16
community/couchdb/couchdb.install
Normal file
|
@ -0,0 +1,16 @@
|
|||
post_install() {
|
||||
id couchdb &>/dev/null || \
|
||||
useradd -r -c "CouchDB daemon" -g daemon -d /var/lib/couchdb -s /bin/false couchdb
|
||||
chown couchdb.daemon /etc/couchdb/local.ini
|
||||
chown -R couchdb.daemon /var/lib/couchdb
|
||||
}
|
||||
|
||||
pre_upgrade() {
|
||||
id couchdb &>/dev/null || \
|
||||
useradd -r -c "CouchDB daemon" -g daemon -d /var/lib/couchdb -s /bin/false couchdb
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
chown couchdb.daemon /etc/couchdb/local.ini
|
||||
chown -R couchdb.daemon /var/lib/couchdb
|
||||
}
|
15
community/couchdb/couchdb.service
Normal file
15
community/couchdb/couchdb.service
Normal file
|
@ -0,0 +1,15 @@
|
|||
[Unit]
|
||||
Description=CouchDB Server
|
||||
|
||||
[Service]
|
||||
User=couchdb
|
||||
Type=simple
|
||||
Environment="ERL_FLAGS=-couch_ini /usr/lib/couchdb/etc/default.ini /usr/lib/couchdb/etc/datadirs.ini /etc/couchdb/local.ini"
|
||||
ExecStart=/usr/lib/couchdb/bin/couchdb
|
||||
ProtectSystem=true
|
||||
ProtectHome=true
|
||||
NoNewPrivileges=true
|
||||
PrivateTmp=true
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
1
community/couchdb/couchdb.tmpfiles
Normal file
1
community/couchdb/couchdb.tmpfiles
Normal file
|
@ -0,0 +1 @@
|
|||
d /run/couchdb 0755 couchdb daemon -
|
3
community/couchdb/datadirs.ini
Normal file
3
community/couchdb/datadirs.ini
Normal file
|
@ -0,0 +1,3 @@
|
|||
[couchdb]
|
||||
database_dir = /var/lib/couchdb
|
||||
view_index_dir = /var/lib/couchdb
|
Loading…
Reference in a new issue