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