wok-next annotate 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 |
rev | line source |
---|---|
al@21121 | 1 # SliTaz package receipt v2. |
mallory@3101 | 2 |
mallory@3101 | 3 PACKAGE="rapidsvn" |
pascal@13252 | 4 VERSION="0.12.1" |
mallory@3101 | 5 CATEGORY="development" |
al@21020 | 6 SHORT_DESC="A cross-platform GUI front-end for the Subversion revision system" |
al@21020 | 7 MAINTAINER="devel@slitaz.org" |
pascal@15590 | 8 LICENSE="GPL3" |
mallory@3101 | 9 WEB_SITE="http://rapidsvn.tigris.org/" |
al@21121 | 10 |
pascal@13252 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@13252 | 12 WGET_URL="http://www.rapidsvn.org/download/release/$VERSION/$TARBALL" |
al@21121 | 13 TARBALL_SHA1="65d051b5a84fe8b5b0ce906f2ba5cf134a560feb" |
al@21121 | 14 |
al@21121 | 15 BUILD_DEPENDS="automake libtool apr-dev apr-util-dev subversion-dev \ |
al@21121 | 16 wxwidgets-dev" |
al@21121 | 17 DEPENDS="apr libsvn wxwidgets" |
al@21121 | 18 |
jozee@4972 | 19 TAGS="subversion svn version-control versioning" |
mallory@3101 | 20 |
al@21020 | 21 compile_rules() { |
al@21121 | 22 autoreconf -vi |
al@21121 | 23 export CPPFLAGS="$CPPFLAGS -DNDEBUG" |
al@21121 | 24 sed -i 's|src/tests/svncpp/Makefile||' configure |
al@21020 | 25 |
al@21020 | 26 ./configure \ |
al@21020 | 27 --prefix=/usr \ |
mallory@3101 | 28 --with-apr-config=apr-1-config \ |
mallory@3101 | 29 --with-apu-config=apu-1-config \ |
mallory@3101 | 30 --with-wx-config=wx-config \ |
mallory@3101 | 31 --with-svn-include=/usr/include \ |
gokhlayeh@11573 | 32 --with-svn-lib=/usr/lib \ |
gokhlayeh@11573 | 33 $CONFIGURE_ARGS && |
al@21082 | 34 fix libtool && |
al@21020 | 35 make && |
al@21020 | 36 make install |
mallory@3101 | 37 } |