diff options
Diffstat (limited to 'community/couchdb/PKGBUILD')
-rw-r--r-- | community/couchdb/PKGBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/community/couchdb/PKGBUILD b/community/couchdb/PKGBUILD index c7c3d708b..6d4d6d171 100644 --- a/community/couchdb/PKGBUILD +++ b/community/couchdb/PKGBUILD @@ -1,30 +1,32 @@ -# $Id: PKGBUILD 48868 2011-06-06 21:47:32Z spupykin $ +# $Id: PKGBUILD 51045 2011-07-04 15:16:10Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua # Previous Contributor: Michael Fellinger <m.fellinger@gmail.com> pkgname=couchdb pkgver=1.1.0 -pkgrel=1 +pkgrel=1.svn20110704 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' 'spidermonkey' 'openssl' 'curl') +depends=('icu' 'erlang' 'js' 'openssl' 'curl') makedepends=('gcc') install=couchdb.install options=('!libtool') backup=('etc/couchdb/local.ini' 'etc/conf.d/couchdb' 'etc/logrotate.d/couchdb') -source=("http://www.apache.org/dist/$pkgname/$pkgver/apache-$pkgname-$pkgver.tar.gz" +#source=("http://www.apache.org/dist/$pkgname/$pkgver/apache-$pkgname-$pkgver.tar.gz" +source=("http://arch.p5n.pp.ru/~sergej/dl/apache-couchdb-$pkgver.svn20110704.tar.gz" "rc-script.patch") -md5sums=('907b763d3a14b6649bf0371ffa75a36b' +md5sums=('a961f9047aa34df56ef19d6f6dce083b' 'e9b5595338efbdc1a5db13284a296612') build() { cd "$srcdir/apache-$pkgname-$pkgver" + sed -i 's|-ljs|-lmozjs185|' configure ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var make patch etc/init/couchdb <$srcdir/rc-script.patch |