wok annotate rapidsvn/receipt @ rev 9569

Up: xorg-xkeyboard-config to 2.2.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 11 23:11:08 2011 +0000 (2011-04-11)
parents be13f25e790b
children 1f447d0dcc65
rev   line source
mallory@3101 1 # SliTaz package receipt.
mallory@3101 2
mallory@3101 3 PACKAGE="rapidsvn"
slaxemulator@6274 4 VERSION="0.12.0"
mallory@3101 5 CATEGORY="development"
mallory@3101 6 SHORT_DESC="A cross-platform GUI front-end for the Subversion revision system."
mallory@3101 7 MAINTAINER="stefanossofroniou542@gmail.com"
mallory@3101 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@8742 9 DEPENDS="wxWidgets libsvn apr libltdl xorg-libXxf86vm libproxy libsqlite libsasl"
slaxemulator@8890 10 BUILD_DEPENDS="libtool wxWidgets-dev subversion-dev apr-dev apr-util-dev cyrus-sasl-dev neon-dev libproxy-dev sqlite-dev expat-dev python"
mallory@3101 11 WEB_SITE="http://rapidsvn.tigris.org/"
slaxemulator@6274 12 TARBALL=$PACKAGE-$VERSION-1.tar.gz
slaxemulator@6274 13 WGET_URL="http://www.rapidsvn.org/download/release/0.12/$TARBALL"
jozee@4972 14 TAGS="subversion svn version-control versioning"
mallory@3101 15
mallory@3101 16 # Rules to configure and make the package.
mallory@3101 17 compile_rules()
mallory@3101 18 {
mallory@3101 19 cd $src
mallory@3101 20 ./configure --prefix=/usr \
mallory@3101 21 --with-apr-config=apr-1-config \
mallory@3101 22 --with-apu-config=apu-1-config \
mallory@3101 23 --with-neon-config=neon-config \
mallory@3101 24 --with-wx-config=wx-config \
mallory@3101 25 --with-svn-include=/usr/include \
mallory@3101 26 --with-svn-lib=/usr/lib \
pascal@5006 27 $CONFIGURE_ARGS &&
pascal@5006 28 make &&
mallory@3101 29 make DESTDIR=$PWD/_pkg install
mallory@3101 30 }
mallory@3101 31
mallory@3101 32 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@3101 33 genpkg_rules()
mallory@3101 34 {
mallory@3101 35 mkdir -p $fs/usr/lib \
mallory@3101 36 $fs/usr/share \
mallory@3101 37 $fs/usr/share/applications \
mallory@3101 38 $fs/usr/share/pixmaps
mallory@3101 39 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
mallory@3101 40 cp -a $_pkg/usr/bin $fs/usr
mallory@3101 41 cp -a stuff/rapidsvn.desktop $fs/usr/share/applications
mallory@3101 42 cp -a stuff/rapidsvn.png $fs/usr/share/pixmaps
mallory@3101 43 }