updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / beansdb / PKGBUILD
blobd84d16e85ab397fe5cecdc9bf9b3f434a2be0fc7
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=beansdb
8 pkgver=0.3.0
9 pkgrel=1
10 pkgdesc="Yet anonther distributed key-value storage system from Douban Inc."
11 arch=(i686)
12 url="http://code.google.com/p/beansdb/"
13 license=('BSD')
14 groups=()
15 depends=('tokyocabinet>1.4')
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 changelog=
25 source=(http://beansdb.googlecode.com/files/$pkgname-$pkgver.tar.gz)
26 noextract=()
27 md5sums=('ff55f36753123578098ce16b0fd7d627')
30 build() {
31   cd "$srcdir/$pkgname-$pkgver"
33   ./configure --prefix=/usr
34   make
37 package() {
38   cd "$srcdir/$pkgname-$pkgver"
40   make DESTDIR="$pkgdir/" install
41   mv -v $pkgdir/usr/bin/convert  $pkgdir/usr/bin/beansdb-convert
44 # vim:set ts=2 sw=2 et: