wok annotate libdbi/receipt @ 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
children ecd613707114
rev   line source
Hans-G?nter@24658 1 # SliTaz package receipt.
Hans-G?nter@24658 2
Hans-G?nter@24658 3 PACKAGE="libdbi"
Hans-G?nter@24658 4 VERSION="0.9.0"
Hans-G?nter@24658 5 CATEGORY="development"
Hans-G?nter@24658 6 SHORT_DESC="Database independent abstraction layer for C."
Hans-G?nter@24658 7 MAINTAINER="maintainer@slitaz.org"
Hans-G?nter@24658 8 LICENSE="LGPL2+"
Hans-G?nter@24658 9 WEB_SITE="https://sourceforge.net/projects/libdbi/"
Hans-G?nter@24658 10
Hans-G?nter@24658 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@24658 12 WGET_URL="https://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
Hans-G?nter@24658 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@24658 14
Hans-G?nter@24658 15
Hans-G?nter@24658 16 # Rules to configure and make the package.
Hans-G?nter@24658 17 compile_rules()
Hans-G?nter@24658 18 {
Hans-G?nter@24658 19 ./configure \
Hans-G?nter@24658 20 --prefix=/usr &&
Hans-G?nter@24658 21 make &&
Hans-G?nter@24658 22 make install
Hans-G?nter@24658 23 }
Hans-G?nter@24658 24
Hans-G?nter@24658 25 # Rules to gen a SliTaz package suitable for Tazpkg.
Hans-G?nter@24658 26 genpkg_rules()
Hans-G?nter@24658 27 {
Hans-G?nter@24658 28 cook_copy_files *.so*
Hans-G?nter@24658 29 }