diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-01-27 19:27:02 +0900 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-01-27 19:27:02 +0900 |
commit | 1a73bf0948ba1756db8b7321feb84897b26ae046 (patch) | |
tree | fee553c5525f2b22c9c2dda966cbb005147c3d66 /ntdb | |
parent | 73c16b19c0d420764939b321ad9026c86708123b (diff) | |
download | opt-1a73bf0948ba1756db8b7321feb84897b26ae046.tar.gz opt-1a73bf0948ba1756db8b7321feb84897b26ae046.tar.xz |
ntdb: initial import version 1.0
Diffstat (limited to 'ntdb')
-rw-r--r-- | ntdb/.footprint | 17 | ||||
-rw-r--r-- | ntdb/.md5sum | 1 | ||||
-rw-r--r-- | ntdb/Pkgfile | 17 |
3 files changed, 35 insertions, 0 deletions
diff --git a/ntdb/.footprint b/ntdb/.footprint new file mode 100644 index 000000000..f0010ec23 --- /dev/null +++ b/ntdb/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/ntdbbackup +-rwxr-xr-x root/root usr/bin/ntdbdump +-rwxr-xr-x root/root usr/bin/ntdbrestore +-rwxr-xr-x root/root usr/bin/ntdbtool +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/ntdb.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libntdb.so -> libntdb.so.1.0 +lrwxrwxrwx root/root usr/lib/libntdb.so.1 -> libntdb.so.1.0 +-rwxr-xr-x root/root usr/lib/libntdb.so.1.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/ntdb.pc +drwxr-xr-x root/root usr/lib/python2.7/ +drwxr-xr-x root/root usr/lib/python2.7/site-packages/ +-rwxr-xr-x root/root usr/lib/python2.7/site-packages/ntdb.so diff --git a/ntdb/.md5sum b/ntdb/.md5sum new file mode 100644 index 000000000..564cfb8bd --- /dev/null +++ b/ntdb/.md5sum @@ -0,0 +1 @@ +57848538a61704505a6d73294d019ef3 ntdb-1.0.tar.gz diff --git a/ntdb/Pkgfile b/ntdb/Pkgfile new file mode 100644 index 000000000..d5fcf0d47 --- /dev/null +++ b/ntdb/Pkgfile @@ -0,0 +1,17 @@ +# Description: Simple database library based on gdbm (replacement of tdb) +# URL: http://www.samba.org/ftp/tdb/ +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: +# Optional: python + +name=ntdb +version=1.0 +release=1 +source=(http://www.samba.org/ftp/tdb/$name-$version.tar.gz) + +build () { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |