opt/tdb/Pkgfile

20 lines
487 B
Plaintext
Raw Normal View History

2016-10-28 16:37:55 +02:00
# Description: Trivial DataBase similar to gdbm
# URL: http://tdb.samba.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: attr python
2010-03-25 11:34:50 +01:00
name=tdb
2016-10-28 16:37:55 +02:00
version=1.3.11
2014-12-02 13:24:11 +01:00
release=1
2016-10-28 16:37:55 +02:00
source=(http://www.samba.org/ftp/$name/$name-$version.tar.gz
$name-man-pages.tar.xz)
2010-03-25 11:34:50 +01:00
2016-09-01 05:10:41 +02:00
build() {
2016-10-28 16:37:55 +02:00
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -d $PKG/usr/share/man/man8
install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
2010-03-25 11:34:50 +01:00
}