wok-next view libtdb/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents d43bf7aae921
children df20b2110f7e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libtdb"
4 VERSION="1.3.15"
5 CATEGORY="misc"
6 SHORT_DESC="A trivial database"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL3"
9 WEB_SITE="https://tdb.samba.org/"
11 TARBALL="tdb-$VERSION.tar.gz"
12 WGET_URL="https://www.samba.org/ftp/tdb/$TARBALL"
14 BUILD_DEPENDS="python-dev libxslt-dev docbook-xsl"
15 SPLIT="libtdb-python libtdb libtdb-dev"
17 compile_rules() {
18 # site script isn't used
19 ./configure \
20 --prefix=/usr \
21 --localstatedir=/var \
22 --sysconfdir=/etc/samba \
23 $CONFIGURE_ARGS &&
24 make && make install || return 1
26 cook_pick_docs docs/README web/index.html
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 libtdb-python)
32 copy python*/
33 DEPENDS="libtdb python"
34 ;;
35 libtdb)
36 copy @std @rm
37 DEPENDS="attr"
38 ;;
39 *-dev)
40 copy @dev
41 ;;
42 esac
43 }