wok-next annotate tdb/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
children
rev   line source
al@21087 1 # SliTaz package receipt v2.
al@21087 2
al@21087 3 PACKAGE="tdb"
al@21087 4 VERSION="1.3.16"
al@21087 5 CATEGORY="misc"
al@21087 6 SHORT_DESC="A trivial database"
al@21087 7 MAINTAINER="devel@slitaz.org"
al@21087 8 LICENSE="LGPL3"
al@21087 9 WEB_SITE="https://tdb.samba.org/"
al@21087 10
al@21087 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@21087 12 WGET_URL="https://www.samba.org/ftp/tdb/$TARBALL"
al@21087 13 TARBALL_SHA1="13b369b92d4cdc8057d90fc2b79657c9f5b72ec6"
al@21087 14
al@21087 15 BUILD_DEPENDS="python-dev libxslt-dev docbook-xsl"
al@21087 16 SPLIT="$PACKAGE-python $PACKAGE $PACKAGE-dev"
al@21087 17
al@21087 18 COPY_python="python*/"
al@21087 19
al@21087 20 DEPENDS_python="$PACKAGE python"
al@21087 21 DEPENDS_std="attr"
al@21087 22
al@21087 23 compile_rules() {
al@21087 24 # site script isn't used
al@21087 25 ./configure \
al@21087 26 --prefix=/usr \
al@21087 27 --localstatedir=/var \
al@21087 28 --sysconfdir=/etc/samba \
al@21087 29 $CONFIGURE_ARGS &&
al@21087 30 make &&
al@21087 31 make install || return 1
al@21087 32
al@21087 33 cook_pick_docs docs/README web/index.html
al@21087 34 }