mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
445 B
Bash
19 lines
445 B
Bash
|
pkgname=libzdb
|
||
|
pkgver=2.4
|
||
|
pkgrel=3
|
||
|
pkgdesc="Zild Database Library"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.tildeslash.com/libzdb/"
|
||
|
license=('GPL')
|
||
|
depends=('postgresql-libs>=8.4.1' 'sqlite3' 'libmysqlclient')
|
||
|
source=(http://www.tildeslash.com/libzdb/dist/libzdb-$pkgver.tar.gz)
|
||
|
md5sums=('b4c4ba0090881d4714f7f3e56d6eadbd')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir/" install
|
||
|
}
|