wok view subversion/receipt @ rev 9225

busybox: fix cksum applet
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 11 18:53:09 2011 +0100 (2011-03-11)
parents bcaa8ea9f699
children eea34b1a170d
line source
1 # SliTaz package receipt.
3 PACKAGE="subversion"
4 VERSION="1.6.16"
5 CATEGORY="development"
6 SHORT_DESC="Subversion Source Code Management access"
7 MAINTAINER="lehswe@gmail.com"
8 DEPENDS="libsvn apr-util libsqlite"
9 BUILD_DEPENDS="zlib-dev neon expat apr-dev mysql-dev neon-dev \
10 sqlite-dev expat-dev krb5 krb5-dev util-linux-ng-uuid-dev python-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://subversion.tigris.org"
13 WGET_URL="http://subversion.tigris.org/downloads/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr &&
20 make -j1 &&
21 make -j1 DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 }