wok annotate rapidsvn/receipt @ rev 5153

get-virtualbox: Fix build.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 24 14:34:06 2010 +0100 (2010-03-24)
parents 8be66f03fbd2
children f405c2444fa9
rev   line source
mallory@3101 1 # SliTaz package receipt.
mallory@3101 2
mallory@3101 3 PACKAGE="rapidsvn"
mallory@3101 4 VERSION="0.9.8"
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"
pascal@5006 9 DEPENDS="wxWidgets subversion apr apr-util libtool cyrus-sasl neon libcomerr3 \
pascal@5006 10 xorg-libXxf86vm"
mallory@3101 11 BUILD_DEPENDS="wxWidgets-dev subversion-dev apr-dev apr-util-dev cyrus-sasl-dev"
mallory@3101 12 WEB_SITE="http://rapidsvn.tigris.org/"
mallory@3101 13 WGET_URL="http://www.rapidsvn.org/download/release/$VERSION/$PACKAGE-$VERSION.tar.gz"
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 }