-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
drwxr-xr-x root/root usr/ | ||
drwxr-xr-x root/root usr/bin/ | ||
-rwxr-xr-x root/root usr/bin/tdbbackup | ||
-rwxr-xr-x root/root usr/bin/tdbdump | ||
-rwxr-xr-x root/root usr/bin/tdbrestore | ||
-rwxr-xr-x root/root usr/bin/tdbtool | ||
drwxr-xr-x root/root usr/include/ | ||
-rw-r--r-- root/root usr/include/tdb.h | ||
drwxr-xr-x root/root usr/lib/ | ||
lrwxrwxrwx root/root usr/lib/libtdb.so -> libtdb.so.1.4.12 | ||
lrwxrwxrwx root/root usr/lib/libtdb.so.1 -> libtdb.so.1.4.12 | ||
-rwxr-xr-x root/root usr/lib/libtdb.so.1.4.12 | ||
drwxr-xr-x root/root usr/lib/pkgconfig/ | ||
-rw-r--r-- root/root usr/lib/pkgconfig/tdb.pc | ||
drwxr-xr-x root/root usr/lib/python3.10/ | ||
drwxr-xr-x root/root usr/lib/python3.10/site-packages/ | ||
-rw-r--r-- root/root usr/lib/python3.10/site-packages/_tdb_text.py | ||
-rwxr-xr-x root/root usr/lib/python3.10/site-packages/tdb.cpython-310-arm-linux-gnueabihf.so | ||
drwxr-xr-x root/root usr/share/ | ||
drwxr-xr-x root/root usr/share/man/ | ||
drwxr-xr-x root/root usr/share/man/man8/ | ||
-rw-r--r-- root/root usr/share/man/man8/tdbbackup.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/tdbdump.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/tdbrestore.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/tdbtool.8.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
untrusted comment: verify with /etc/ports/opt-arm.pub | ||
RWQh9Dk2FlLauBBLktk/VqqMI5i3e5ZKtBVtreNA1fib/zGLHZhNoLzDd4z167Cu07C0aM/7IVd2GBN81PwuUSLFhTlmTtftVAE= | ||
SHA256 (Pkgfile) = 5ea5f41841b39cbf4b4e9d836da63d6644e109603cae57ec2ba5f346f98c5f0b | ||
SHA256 (.footprint) = e0b71cfc0e80b7545f6b50bc52117f449a4599894e80a196f4cc9e0a9aa46882 | ||
SHA256 (tdb-1.4.12.tar.gz) = 6ce4b27498812d09237ece65a0d6dfac0941610e709848ecb822aa241084cd7a | ||
SHA256 (tdb-man-pages.tar.xz) = 4ba01bfb0ea6d3572a00b1993783053d42170299cda5fa842629a231b957ae2f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Description: Trivial DataBase similar to gdbm | ||
# URL: https://tdb.samba.org/ | ||
# Maintainer: Juergen Daubert, jue at crux dot nu | ||
# Arch Maintainer: CRUX-ARM System Team. devel at crux-arm dot nu | ||
# Depends on: | ||
|
||
name=tdb | ||
version=1.4.12 | ||
release=1 | ||
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz | ||
$name-man-pages.tar.xz) | ||
|
||
build() { | ||
cd $name-$version | ||
|
||
./configure --prefix=/usr | ||
make | ||
make DESTDIR=$PKG install | ||
|
||
install -d $PKG/usr/share/man/man8 | ||
install -m 0644 $SRC/tdb[!-]*.8 $PKG/usr/share/man/man8 | ||
} |
Binary file not shown.