wok rev 24658

created recipes for libdbi and libdbi-dev
author Hans-G?nter Theisgen
date Fri Mar 11 09:23:49 2022 +0100 (2022-03-11)
parents 750eba330f9c
children 80b94d3254ba
files icewm/receipt libdbi-dev/receipt libdbi/description.txt libdbi/receipt
line diff
     1.1 --- a/icewm/receipt	Fri Mar 11 07:48:38 2022 +0100
     1.2 +++ b/icewm/receipt	Fri Mar 11 09:23:49 2022 +0100
     1.3 @@ -12,6 +12,7 @@
     1.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.5  WGET_URL="https://github.com/ice-wm/$PACKAGE/archive/$VERSION.tar.gz"
     1.6  
     1.7 +SUGGESTED="icewm-lang"
     1.8  DEPENDS="freetype fribidi gcc83-lib-base gdk-pixbuf gettext-base imlib2
     1.9  	libxml2 xorg-libICE xorg-libSM xorg-libX11 xorg-libXext xorg-libXft
    1.10  	xorg-libXinerama xorg-libXpm xorg-libXrandr xorg-libXrender"
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libdbi-dev/receipt	Fri Mar 11 09:23:49 2022 +0100
     2.3 @@ -0,0 +1,20 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libdbi-dev"
     2.7 +VERSION="0.9.0"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Database independent abstraction layer for C - development files."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="LGPL2+"
    2.12 +WEB_SITE="https://sourceforge.net/projects/libdbi/"
    2.13 +
    2.14 +DEPENDS="libdbi pkg-config"
    2.15 +WANTED="libdbi"
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	cook_copy_folders	include
    2.21 +	cook_copy_folders	pkgconfig
    2.22 +	cook_copy_files		*.*a
    2.23 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libdbi/description.txt	Fri Mar 11 09:23:49 2022 +0100
     3.3 @@ -0,0 +1,5 @@
     3.4 +Libdbi implements a database-independent abstraction layer in C,
     3.5 +similar to the DBI/DBD layer in Perl.
     3.6 +Writing one generic set of code, programmers can leverage the power
     3.7 +of multiple DBs and multiple simultaneous DB connections by using
     3.8 +this framework.
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/libdbi/receipt	Fri Mar 11 09:23:49 2022 +0100
     4.3 @@ -0,0 +1,29 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="libdbi"
     4.7 +VERSION="0.9.0"
     4.8 +CATEGORY="development"
     4.9 +SHORT_DESC="Database independent abstraction layer for C."
    4.10 +MAINTAINER="maintainer@slitaz.org"
    4.11 +LICENSE="LGPL2+"
    4.12 +WEB_SITE="https://sourceforge.net/projects/libdbi/"
    4.13 +
    4.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.15 +WGET_URL="https://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
    4.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    4.17 +
    4.18 +
    4.19 +# Rules to configure and make the package.
    4.20 +compile_rules()
    4.21 +{
    4.22 +	./configure		\
    4.23 +		--prefix=/usr &&
    4.24 +	make &&
    4.25 +	make install
    4.26 +}
    4.27 +
    4.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.29 +genpkg_rules()
    4.30 +{
    4.31 +	cook_copy_files	*.so*
    4.32 +}