opt/tdb/Pkgfile

22 lines
468 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
2019-08-21 10:10:46 +02:00
# Depends on: python3
2010-03-25 11:34:50 +01:00
name=tdb
2019-12-16 11:24:39 +01:00
version=1.4.3
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() {
2019-01-16 12:23:24 +01: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
}