wok-next diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tdb/receipt	Sat Nov 21 14:32:44 2020 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt v2.
     1.5 +
     1.6 +PACKAGE="tdb"
     1.7 +VERSION="1.3.16"
     1.8 +CATEGORY="misc"
     1.9 +SHORT_DESC="A trivial database"
    1.10 +MAINTAINER="devel@slitaz.org"
    1.11 +LICENSE="LGPL3"
    1.12 +WEB_SITE="https://tdb.samba.org/"
    1.13 +
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WGET_URL="https://www.samba.org/ftp/tdb/$TARBALL"
    1.16 +TARBALL_SHA1="13b369b92d4cdc8057d90fc2b79657c9f5b72ec6"
    1.17 +
    1.18 +BUILD_DEPENDS="python-dev libxslt-dev docbook-xsl"
    1.19 +SPLIT="$PACKAGE-python $PACKAGE $PACKAGE-dev"
    1.20 +
    1.21 +COPY_python="python*/"
    1.22 +
    1.23 +DEPENDS_python="$PACKAGE python"
    1.24 +DEPENDS_std="attr"
    1.25 +
    1.26 +compile_rules() {
    1.27 +	# site script isn't used
    1.28 +	./configure \
    1.29 +		--prefix=/usr \
    1.30 +		--localstatedir=/var \
    1.31 +		--sysconfdir=/etc/samba \
    1.32 +		$CONFIGURE_ARGS &&
    1.33 +	make &&
    1.34 +	make install || return 1
    1.35 +
    1.36 +	cook_pick_docs docs/README web/index.html
    1.37 +}