wok-next view rapidsvn/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d026631bbebb
children
line source
1 # SliTaz package receipt v2.
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="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://rapidsvn.tigris.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.rapidsvn.org/download/release/$VERSION/$TARBALL"
13 TARBALL_SHA1="65d051b5a84fe8b5b0ce906f2ba5cf134a560feb"
15 BUILD_DEPENDS="automake libtool apr-dev apr-util-dev subversion-dev \
16 wxwidgets-dev"
17 DEPENDS="apr libsvn wxwidgets"
19 TAGS="subversion svn version-control versioning"
21 compile_rules() {
22 autoreconf -vi
23 export CPPFLAGS="$CPPFLAGS -DNDEBUG"
24 sed -i 's|src/tests/svncpp/Makefile||' configure
26 ./configure \
27 --prefix=/usr \
28 --with-apr-config=apr-1-config \
29 --with-apu-config=apu-1-config \
30 --with-wx-config=wx-config \
31 --with-svn-include=/usr/include \
32 --with-svn-lib=/usr/lib \
33 $CONFIGURE_ARGS &&
34 fix libtool &&
35 make &&
36 make install
37 }