opt/tdb/Pkgfile

20 lines
489 B
Plaintext
Raw Normal View History

2016-10-28 16:37:55 +02:00
# Description: Trivial DataBase similar to gdbm
2017-01-27 09:54:34 +01:00
# URL: https://tdb.samba.org/
2016-10-28 16:37:55 +02:00
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: attr python
2010-03-25 11:34:50 +01:00
name=tdb
2017-08-28 19:58:04 +02:00
version=1.3.15
2014-12-02 13:24:11 +01:00
release=1
2017-01-27 09:54:34 +01:00
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz
2016-10-28 16:37:55 +02:00
$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
}