20 lines
450 B
Plaintext
20 lines
450 B
Plaintext
# Tanım: GDBM'ye benzer basit bir Veritabanı, ancak aynı anda taahhütlere izin verir
|
||
# URL: http://tdb.samba.org/
|
||
# Paketçi: milisarge
|
||
# Gerekler: python libxslt docbook-xsl
|
||
|
||
name=tdb
|
||
version=1.3.15
|
||
release=1
|
||
source=(http://samba.org/ftp/${name}/${name}-${version}.tar.gz)
|
||
|
||
derle() {
|
||
cd $name-$version
|
||
./configure --prefix=/usr \
|
||
--localstatedir=/var \
|
||
--sysconfdir=/etc/samba
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|
||
|