wok annotate 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
rev   line source
pascal@14166 1 # SliTaz package receipt.
pascal@14166 2
pascal@14166 3 PACKAGE="fossil"
Hans-G?nter@20933 4 VERSION="2.7"
pascal@14166 5 CATEGORY="development"
pascal@14166 6 SHORT_DESC="Simple, high-reliability, distributed software configuration management."
pascal@14166 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15215 8 LICENSE="BSD"
Hans-G?nter@20933 9 WEB_SITE="https://www.fossil-scm.org/index.html"
Hans-G?nter@20933 10
Hans-G?nter@20933 11 TARBALL="$PACKAGE-src-$VERSION.tar.gz"
Hans-G?nter@20933 12 WGET_URL="${WEB_SITE}/uv/$TARBALL"
pascal@14166 13
pascal@14166 14 DEPENDS="libssl libcrypto zlib"
Hans-G?nter@20933 15 BUILD_DEPENDS="fuse-dev openssl-dev zlib-dev"
pascal@14166 16
pascal@14166 17 # Rules to configure and make the package.
pascal@14166 18 compile_rules()
pascal@14166 19 {
Hans-G?nter@20933 20 ./configure \
Hans-G?nter@20933 21 --prefix=/usr \
Hans-G?nter@20933 22 $CONFIGURE_ARGS &&
Hans-G?nter@20933 23 make -j 1 &&
pascal@14166 24 make DESTDIR=$DESTDIR install
pascal@14166 25 }
pascal@14166 26
pascal@14166 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14166 28 genpkg_rules()
pascal@14166 29 {
pascal@14166 30 cp -a $install/usr $fs/
pascal@14166 31 }