wok annotate fossil/receipt @ rev 20548
linld: fix open_image
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Dec 01 16:48:25 2018 +0100 (2018-12-01) |
parents | 960ced26f06d |
children | 50bc0ee67b12 |
rev | line source |
---|---|
pascal@14166 | 1 # SliTaz package receipt. |
pascal@14166 | 2 |
pascal@14166 | 3 PACKAGE="fossil" |
pascal@14166 | 4 VERSION="1.25" |
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" |
pascal@14166 | 9 TARBALL="$PACKAGE-src-20130216000435.tar.gz" |
pascal@14166 | 10 WEB_SITE="http://www.fossil-scm.org/" |
pascal@14166 | 11 WGET_URL="${WEB_SITE}download/$TARBALL" |
pascal@14166 | 12 |
pascal@14166 | 13 DEPENDS="libssl libcrypto zlib" |
pascal@14166 | 14 BUILD_DEPENDS="openssl-dev zlib-dev" |
pascal@14166 | 15 |
pascal@14166 | 16 # Rules to configure and make the package. |
pascal@14166 | 17 compile_rules() |
pascal@14166 | 18 { |
pascal@14166 | 19 cd $src |
pascal@14166 | 20 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@14166 | 21 make && |
pascal@14166 | 22 make DESTDIR=$DESTDIR install |
pascal@14166 | 23 } |
pascal@14166 | 24 |
pascal@14166 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14166 | 26 genpkg_rules() |
pascal@14166 | 27 { |
pascal@14166 | 28 cp -a $install/usr $fs/ |
pascal@14166 | 29 } |