wok-next view libzdb/receipt @ rev 20488

palemoon: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 11:00:54 2018 +0100 (2018-03-12)
parents 2809ecb8c754
children 5841522533ec
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="pankso@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="libzdb-dev"
17 compile_rules() {
18 ./configure \
19 --prefix=/usr \
20 --without-postgresql \
21 --without-mysql \
22 --enable-optimized \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 libzdb)
30 copy @std
31 DEPENDS="sqlite3"
32 ;;
33 *-dev)
34 copy @dev
35 ;;
36 esac
37 }