wok view rapidsvn/receipt @ rev 16154

remove libtaz, see http://hg.slitaz.org/slitaz-dev-tools/rev/712c188572fc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 28 14:10:02 2014 +0000 (2014-03-28)
parents 6d364495cc94
children 256efd525f0c
line source
1 # SliTaz package receipt.
3 PACKAGE="rapidsvn"
4 VERSION="0.12.1"
5 CATEGORY="development"
6 SHORT_DESC="A cross-platform GUI front-end for the Subversion revision system."
7 MAINTAINER="stefanossofroniou542@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://rapidsvn.tigris.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://www.rapidsvn.org/download/release/$VERSION/$TARBALL"
12 TAGS="subversion svn version-control versioning"
14 DEPENDS="wxWidgets libsvn apr libltdl xorg-libXxf86vm libproxy libsqlite \
15 libsasl apr-util"
16 BUILD_DEPENDS="$DEPENDS libtool wxWidgets-dev subversion-dev apr-dev \
17 apr-util-dev cyrus-sasl-dev neon-dev libproxy-dev sqlite-dev expat-dev python \
18 util-linux-uuid-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure --prefix=/usr \
25 --with-apr-config=apr-1-config \
26 --with-apu-config=apu-1-config \
27 --with-neon-config=neon-config \
28 --with-wx-config=wx-config \
29 --with-svn-include=/usr/include \
30 --with-svn-lib=/usr/lib \
31 $CONFIGURE_ARGS &&
32 make && make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/lib
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/usr/bin $fs/usr
41 }