wok rev 24837

updated libtdb and libtdb-dev (1.4.3 -> 1.4.5)
author Hans-G?nter Theisgen
date Fri Mar 25 07:38:22 2022 +0100 (2022-03-25)
parents b26357903eb9
children 328ae9a03407
files libtdb-dev/receipt libtdb/description.txt libtdb/receipt
line diff
     1.1 --- a/libtdb-dev/receipt	Fri Mar 25 07:25:04 2022 +0100
     1.2 +++ b/libtdb-dev/receipt	Fri Mar 25 07:38:22 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libtdb-dev"
     1.7 -VERSION="1.4.3"
     1.8 +VERSION="1.4.5"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Development files for libtdb."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12 @@ -14,9 +14,7 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/lib
    1.17 -
    1.18 -	cp -a $install/usr/local/include	$fs/usr
    1.19 -	cp -a $install/usr/local/lib/pkgconfig	$fs/usr/lib
    1.20 +	cook_copy_folders	include
    1.21 +	cook_copy_folders	pkgconfig
    1.22  }
    1.23  
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libtdb/description.txt	Fri Mar 25 07:38:22 2022 +0100
     2.3 @@ -0,0 +1,5 @@
     2.4 +Samba stores its data in TDB files.
     2.5 +TDB stands for "Trivial database" and was first introduced in Samba
     2.6 +as a way to store information quickly and effectively. Its interface
     2.7 +is very similar to that of GDBM, but in contradiction to GDBM it
     2.8 +supports multiple writers and readers simultaneously.
     3.1 --- a/libtdb/receipt	Fri Mar 25 07:25:04 2022 +0100
     3.2 +++ b/libtdb/receipt	Fri Mar 25 07:38:22 2022 +0100
     3.3 @@ -1,12 +1,13 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libtdb"
     3.7 -VERSION="1.4.3"
     3.8 +VERSION="1.4.5"
     3.9  CATEGORY="misc"
    3.10  SHORT_DESC="A Trivia Database similar to GDBM but allows simultaneous commits."
    3.11  MAINTAINER="slaxemulator@gmail.com"
    3.12  LICENSE="LGPL3"
    3.13  WEB_SITE="https://tdb.samba.org/"
    3.14 +REPOLOGY="tdb"
    3.15  
    3.16  SOURCE="tdb"
    3.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    3.18 @@ -31,7 +32,8 @@
    3.19  	_manstyle="/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl"
    3.20  	#sed -i "s#http.*xsl#$_manstyle#" tdb.mk
    3.21  
    3.22 -	./configure &&
    3.23 +	./configure		\
    3.24 +		--prefix=/usr &&
    3.25  	make &&
    3.26  	make install
    3.27  }
    3.28 @@ -40,6 +42,5 @@
    3.29  genpkg_rules()
    3.30  {
    3.31  	mkdir -p $fs/usr/lib
    3.32 -	cp -a $install/usr/local/lib/*.so*	$fs/usr/lib
    3.33 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.34  }
    3.35 -