wok view fossil/receipt @ rev 14245

posixovl: fix symlink size
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 23 19:33:01 2013 +0100 (2013-03-23)
parents
children 7bb096863642
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 TARBALL="$PACKAGE-src-20130216000435.tar.gz"
9 WEB_SITE="http://www.fossil-scm.org/"
10 WGET_URL="${WEB_SITE}download/$TARBALL"
12 DEPENDS="libssl libcrypto zlib"
13 BUILD_DEPENDS="openssl-dev zlib-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/usr $fs/
28 }