# $Id: PKGBUILD 34181 2010-12-04 13:42:17Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Angel 'angvp' Velasquez # Contributor: AqD # Contributor: TheMadsen pkgname=rapidsvn pkgver=0.12.0 pkgrel=3 pkgdesc="A cross-platform GUI front-end for the Subversion revision system written in C++ using the wxWidgets framework." depends=('subversion' 'wxgtk') url='http://rapidsvn.tigris.org/' arch=('i686' 'x86_64') license=('GPL') options=('!libtool') source=(http://www.rapidsvn.org/download/release/0.12/rapidsvn-$pkgver-1.tar.gz $pkgname.desktop) md5sums=('8ec54104fca32d81e396a68e25324263' '349e6d9729f88868902611bb1172f134') build() { cd $srcdir/$pkgname-$pkgver-1 sed -i 's#src/tests/svncpp/Makefile##' configure [ "$NOEXTRACT" == 1 ] || ./configure --prefix=/usr --with-apu-config="`which apu-1-config`" --with-apr-config="`which apr-1-config`" sed -i 's|/usr/bin/env python|/usr/bin/env python2|' tools/*.py sed -i 's|python|python2|' src/locale/Makefile make -k make DESTDIR=$pkgdir install install -Dm644 src/res/bitmaps/rapidsvn_32x32.xpm $pkgdir/usr/share/pixmaps/rapidsvn_32x32.xpm install -Dm644 ../$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop }