wok-next annotate rapidsvn/receipt @ rev 4723
Up: vte* (0.23.1)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue Jan 05 15:58:12 2010 +0100 (2010-01-05) |
parents | |
children | 8be66f03fbd2 |
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" |
mallory@3101 | 9 DEPENDS="wxWidgets subversion apr apr-util libtool cyrus-sasl neon" |
mallory@3101 | 10 BUILD_DEPENDS="wxWidgets-dev subversion-dev apr-dev apr-util-dev cyrus-sasl-dev" |
mallory@3101 | 11 WEB_SITE="http://rapidsvn.tigris.org/" |
mallory@3101 | 12 WGET_URL="http://www.rapidsvn.org/download/release/$VERSION/$PACKAGE-$VERSION.tar.gz" |
mallory@3101 | 13 |
mallory@3101 | 14 # Rules to configure and make the package. |
mallory@3101 | 15 compile_rules() |
mallory@3101 | 16 { |
mallory@3101 | 17 cd $src |
mallory@3101 | 18 ./configure --prefix=/usr \ |
mallory@3101 | 19 --with-apr-config=apr-1-config \ |
mallory@3101 | 20 --with-apu-config=apu-1-config \ |
mallory@3101 | 21 --with-neon-config=neon-config \ |
mallory@3101 | 22 --with-wx-config=wx-config \ |
mallory@3101 | 23 --with-svn-include=/usr/include \ |
mallory@3101 | 24 --with-svn-lib=/usr/lib \ |
mallory@3101 | 25 $CONFIGURE_ARGS |
mallory@3101 | 26 make |
mallory@3101 | 27 make DESTDIR=$PWD/_pkg install |
mallory@3101 | 28 } |
mallory@3101 | 29 |
mallory@3101 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@3101 | 31 genpkg_rules() |
mallory@3101 | 32 { |
mallory@3101 | 33 mkdir -p $fs/usr/lib \ |
mallory@3101 | 34 $fs/usr/share \ |
mallory@3101 | 35 $fs/usr/share/applications \ |
mallory@3101 | 36 $fs/usr/share/pixmaps |
mallory@3101 | 37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
mallory@3101 | 38 cp -a $_pkg/usr/bin $fs/usr |
mallory@3101 | 39 cp -a stuff/rapidsvn.desktop $fs/usr/share/applications |
mallory@3101 | 40 cp -a stuff/rapidsvn.png $fs/usr/share/pixmaps |
mallory@3101 | 41 } |