Skip to content

Commit

Permalink
issue #43: AUR package file
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqiu committed Aug 1, 2016
1 parent 1f54d6d commit bba4643
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions packaging/aur/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Maintainer: Kevin J. Qiu <kevin@idempotent.ca>
pkgname=cdbcli
pkgver=0.2.1
pkgrel=1
pkgdesc="The interactive shell for CouchDB"
arch=('any')
url="https://github.com/kevinjqiu/cdbcli"
license=('Apache 2.0')
groups=()
depends=('python')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=()
md5sums=()

package() {
git clone https://github.com/kevinjqiu/cdbcli.git $srcdir/$pkgname-$pkgver
git checkout "releases/$pkgver"
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et:

0 comments on commit bba4643

Please sign in to comment.