wok view subversion/receipt @ rev 2593

alsaplayer: Remove flac from deps (not needed and -312k for the core)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 09 19:26:25 2009 +0200 (2009-04-09)
parents 891dd12048c2
children 0588160a6878
line source
1 # SliTaz package receipt.
3 PACKAGE="subversion"
4 VERSION="1.5.4"
5 CATEGORY="development"
6 SHORT_DESC="Subversion Source Code Management access"
7 MAINTAINER="lehswe@gmail.com"
8 DEPENDS="apr-util cyrus-sasl openssl krb5 libuuid expat zlib"
9 BUILD_DEPENDS="zlib-dev neon expat apr-dev apr-util-dev apr-util mysql-dev"
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 }