mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:57:13 +08:00
28 lines
779 B
Bash
28 lines
779 B
Bash
# $Id: PKGBUILD 70849 2010-03-02 06:25:26Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
# Contributorr: eric <eric@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=tdb
|
|
pkgver=1.2.7
|
|
pkgrel=1
|
|
pkgdesc="A Trivia Database similar to GDBM but allows simultaneous commits"
|
|
arch=(i686 x86_64)
|
|
license=('GPL3')
|
|
url="http://tdb.samba.org/"
|
|
source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
makedepends=('python2')
|
|
optdepends=('python2: for python bindings')
|
|
options=(force)
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--localstatedir=/var \
|
|
--sysconfdir=/etc/samba
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install
|
|
}
|
|
md5sums=('fe6623b78036980b7ca8835b8a0b1f29')
|
|
|