wok-next annotate fossil/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 fa61cfb16a25
children
rev   line source
al@20871 1 # SliTaz package receipt v2.
pascal@14166 2
pascal@14166 3 PACKAGE="fossil"
al@20871 4 VERSION="2.6"
pascal@14166 5 CATEGORY="development"
al@20871 6 SHORT_DESC="Simple, high-reliability, distributed software configuration management"
pascal@14166 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15215 8 LICENSE="BSD"
pascal@21142 9 WEB_SITE="https://www.fossil-scm.org/index.html/doc/trunk/www/index.wiki"
pascal@14166 10
al@20871 11 TARBALL="fossil-src-$VERSION.tar.gz"
pascal@21142 12 WGET_URL="https://www.fossil-scm.org/index.html/uv/$TARBALL"
pascal@14166 13
al@20871 14 BUILD_DEPENDS="zlib-dev openssl-dev sqlite3-dev tcl-dev"
al@20871 15
al@20871 16 compile_rules() {
al@20871 17 ./configure \
al@20871 18 --prefix=/usr \
al@20871 19 --json \
al@20871 20 --disable-internal-sqlite \
al@20871 21 --with-tcl=/usr \
al@20871 22 --with-tcl-private-stubs=1 \
al@20871 23 $CONFIGURE_ARGS &&
pascal@14166 24 make &&
al@20871 25 make install || return 1
al@20871 26
al@20871 27 cook_pick_manpages fossil.1
pascal@14166 28 }
pascal@14166 29
al@20871 30 genpkg_rules() {
al@20871 31 copy @std
al@20871 32 DEPENDS="openssl zlib"
pascal@14166 33 }