diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/rapidsvn |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/rapidsvn')
-rw-r--r-- | community/rapidsvn/PKGBUILD | 35 | ||||
-rw-r--r-- | community/rapidsvn/rapidsvn.desktop | 10 |
2 files changed, 45 insertions, 0 deletions
diff --git a/community/rapidsvn/PKGBUILD b/community/rapidsvn/PKGBUILD new file mode 100644 index 000000000..cee7bf35b --- /dev/null +++ b/community/rapidsvn/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 34181 2010-12-04 13:42:17Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: AqD <aquila.deus@gmail.com> +# Contributor: TheMadsen <arch@themadsens.dk> + +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 +} diff --git a/community/rapidsvn/rapidsvn.desktop b/community/rapidsvn/rapidsvn.desktop new file mode 100644 index 000000000..8adeb20e1 --- /dev/null +++ b/community/rapidsvn/rapidsvn.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=RapidSVN +Comment=SVN source viewer +Exec=rapidsvn +Icon=rapidsvn_32x32 +Terminal=false +Type=Application +Categories=GNOME;Application;Development; +StartupNotify=true |