wok view fossil/receipt @ rev 15215

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 14 17:06:00 2013 +0000 (2013-09-14)
parents 960ced26f06d
children 50bc0ee67b12
line source
1 # SliTaz package receipt.
3 PACKAGE="fossil"
4 VERSION="1.25"
5 CATEGORY="development"
6 SHORT_DESC="Simple, high-reliability, distributed software configuration management."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-src-20130216000435.tar.gz"
10 WEB_SITE="http://www.fossil-scm.org/"
11 WGET_URL="${WEB_SITE}download/$TARBALL"
13 DEPENDS="libssl libcrypto zlib"
14 BUILD_DEPENDS="openssl-dev zlib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/usr $fs/
29 }