wok-next view libzdb/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 5841522533ec
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libzdb"
4 VERSION="3.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Zild Database Library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="http://www.tildeslash.com/libzdb/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.tildeslash.com/libzdb/dist/$TARBALL"
14 BUILD_DEPENDS="sqlite3-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --without-postgresql \
20 --without-mysql \
21 --enable-optimized \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 libzdb)
31 copy @std
32 DEPENDS="sqlite3"
33 ;;
34 *-dev)
35 copy @dev
36 ;;
37 esac
38 }