blob: 20852cb11f56ff3460a8f7bfc92da2ecf749be64 (
plain)
1 # Description: Simple database library based on gdbm (replacement of tdb)
2 # URL: https://www.samba.org/ftp/tdb/
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: python
5
6 name=ntdb
7 version=1.0
8 release=2
9 source=(https://www.samba.org/ftp/tdb/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13 ./configure \
14 --prefix=/usr \
15 --mandir=/usr/man
16 make
17 make DESTDIR=$PKG install
18 }
|