wok view subversion/receipt @ rev 1439

update BUILD_DEPENDS for bastet dropbear enchant gamin htop lame and nano
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 02 13:37:38 2008 +0000 (2008-10-02)
parents 805d63a583d5
children 52dc4b48ed81
line source
1 # SliTaz package receipt.
3 PACKAGE="subversion"
4 VERSION="1.5.1"
5 CATEGORY="development"
6 SHORT_DESC="Subversion Source Code Management access"
7 MAINTAINER="lehswe@gmail.com"
8 DEPENDS="apr-util"
9 BUILD_DEPENDS="zlib-dev neon expat apr-dev apr-util-dev apr-util"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://subversion.tigris.org"
12 WGET_URL="http://subversion.tigris.org/downloads/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make 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
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
32 }
34 # Rules to clean stuff
35 clean_wok()
36 {
37 rm -rf $WOK/$PACKAGE/ss*
38 }