# HG changeset patch # User Hans-G?nter Theisgen # Date 1648190302 -3600 # Node ID 4ab89f7482b3bbf7141e03b4e439d505425f5294 # Parent b26357903eb92546cf0cac7629d3be2a882b8cf5 updated libtdb and libtdb-dev (1.4.3 -> 1.4.5) diff -r b26357903eb9 -r 4ab89f7482b3 libtdb-dev/receipt --- a/libtdb-dev/receipt Fri Mar 25 07:25:04 2022 +0100 +++ b/libtdb-dev/receipt Fri Mar 25 07:38:22 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libtdb-dev" -VERSION="1.4.3" +VERSION="1.4.5" CATEGORY="development" SHORT_DESC="Development files for libtdb." MAINTAINER="slaxemulator@gmail.com" @@ -14,9 +14,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/local/include $fs/usr - cp -a $install/usr/local/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r b26357903eb9 -r 4ab89f7482b3 libtdb/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libtdb/description.txt Fri Mar 25 07:38:22 2022 +0100 @@ -0,0 +1,5 @@ +Samba stores its data in TDB files. +TDB stands for "Trivial database" and was first introduced in Samba +as a way to store information quickly and effectively. Its interface +is very similar to that of GDBM, but in contradiction to GDBM it +supports multiple writers and readers simultaneously. diff -r b26357903eb9 -r 4ab89f7482b3 libtdb/receipt --- a/libtdb/receipt Fri Mar 25 07:25:04 2022 +0100 +++ b/libtdb/receipt Fri Mar 25 07:38:22 2022 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="libtdb" -VERSION="1.4.3" +VERSION="1.4.5" CATEGORY="misc" SHORT_DESC="A Trivia Database similar to GDBM but allows simultaneous commits." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL3" WEB_SITE="https://tdb.samba.org/" +REPOLOGY="tdb" SOURCE="tdb" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -31,7 +32,8 @@ _manstyle="/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl" #sed -i "s#http.*xsl#$_manstyle#" tdb.mk - ./configure && + ./configure \ + --prefix=/usr && make && make install } @@ -40,6 +42,5 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/local/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib } -