wok annotate subversion/receipt @ rev 4052

Removed libuuid and update DEPENDS for all afected pkgs
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 09 21:42:10 2009 +0200 (2009-09-09)
parents 8c4a70e18847
children e986c3eb7c2a
rev   line source
erjo@1217 1 # SliTaz package receipt.
erjo@1217 2
erjo@1217 3 PACKAGE="subversion"
pascal@1867 4 VERSION="1.5.4"
pascal@1423 5 CATEGORY="development"
erjo@1217 6 SHORT_DESC="Subversion Source Code Management access"
erjo@1217 7 MAINTAINER="lehswe@gmail.com"
pankso@4052 8 DEPENDS="apr-util cyrus-sasl openssl krb5 util-linux-ng-uuid expat zlib"
pascal@1514 9 BUILD_DEPENDS="zlib-dev neon expat apr-dev apr-util-dev apr-util mysql-dev"
erjo@1217 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@1217 11 WEB_SITE="http://subversion.tigris.org"
erjo@1217 12 WGET_URL="http://subversion.tigris.org/downloads/$TARBALL"
erjo@1217 13
erjo@1217 14 # Rules to configure and make the package.
erjo@1217 15 compile_rules()
erjo@1217 16 {
erjo@1217 17 cd $src
erjo@1217 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1514 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1514 20 make &&
erjo@1217 21 make DESTDIR=$PWD/_pkg install
erjo@1217 22 }
erjo@1217 23
erjo@1217 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1217 25 genpkg_rules()
erjo@1217 26 {
erjo@1217 27 mkdir -p $fs/usr/lib
erjo@1217 28
erjo@1217 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1217 30 cp -a $_pkg/usr/bin $fs/usr
erjo@1217 31
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 }
erjo@1217 39