wok annotate subversion/receipt @ rev 6128

add missings Deps
author xfred@localhost
date Mon Sep 06 16:47:09 2010 +0000 (2010-09-06)
parents 889110b89584
children a68201fabc69
rev   line source
erjo@1217 1 # SliTaz package receipt.
erjo@1217 2
erjo@1217 3 PACKAGE="subversion"
slaxemulator@5349 4 VERSION="1.6.11"
pascal@1423 5 CATEGORY="development"
erjo@1217 6 SHORT_DESC="Subversion Source Code Management access"
erjo@1217 7 MAINTAINER="lehswe@gmail.com"
paul@4431 8 DEPENDS="apr-util cyrus-sasl openssl krb5 util-linux-ng-uuid expat zlib neon sqlite \
pascal@5007 9 gnutls libcomerr libcomerr3"
jozee@5360 10 BUILD_DEPENDS="zlib-dev neon expat apr-dev apr-util-dev apr-util mysql-dev neon-dev \
paul@4417 11 sqlite-dev expat-dev krb5 krb5-dev"
erjo@1217 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@1217 13 WEB_SITE="http://subversion.tigris.org"
erjo@1217 14 WGET_URL="http://subversion.tigris.org/downloads/$TARBALL"
erjo@1217 15
erjo@1217 16 # Rules to configure and make the package.
erjo@1217 17 compile_rules()
erjo@1217 18 {
erjo@1217 19 cd $src
erjo@1217 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1514 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@5777 22 make -j 4 &&
erjo@1217 23 make DESTDIR=$PWD/_pkg install
erjo@1217 24 }
erjo@1217 25
erjo@1217 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1217 27 genpkg_rules()
erjo@1217 28 {
erjo@1217 29 mkdir -p $fs/usr/lib
erjo@1217 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1217 31 cp -a $_pkg/usr/bin $fs/usr
erjo@1217 32 }
erjo@1217 33
erjo@1217 34 # Rules to clean stuff
erjo@1217 35 clean_wok()
erjo@1217 36 {
erjo@1217 37 rm -rf $WOK/$PACKAGE/ss*
erjo@1217 38 }