wok view fossil/receipt @ rev 22115

updated volumeicon (0.4.6 -> 0.5.1)
author Hans-G?nter Theisgen
date Sat Nov 02 16:43:33 2019 +0100 (2019-11-02)
parents 7bb096863642
children d3cfd25843be
line source
1 # SliTaz package receipt.
3 PACKAGE="fossil"
4 VERSION="2.7"
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"
11 TARBALL="$PACKAGE-src-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}/uv/$TARBALL"
14 DEPENDS="libssl libcrypto zlib"
15 BUILD_DEPENDS="fuse-dev openssl-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs/
31 }