updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / wxhexeditor-svn / PKGBUILD
blobf97e022c0a61ff05b3436773436d6b139765becc
1 # Maintainer: TDY <tdy@gmx.com>
3 pkgname=wxhexeditor-svn
4 pkgver=95
5 pkgrel=1
6 pkgdesc="A hex editor for large files and devices"
7 arch=('i686' 'x86_64')
8 url="http://wxhexeditor.sourceforge.net/"
9 license=('GPL')
10 depends=('wxgtk')
11 makedepends=('subversion')
12 provides=('wxhexeditor')
13 conflicts=('wxhexeditor')
15 _svntrunk=https://wxhexeditor.svn.sourceforge.net/svnroot/wxhexeditor/trunk
16 _svnmod=wxhexeditor
18 build() {
19   cd "$srcdir"
21   if [[ -d $_svnmod/.svn ]]; then
22     cd $_svnmod && svn up -r $pkgver && cd ..
23   else
24     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
25   fi
27   rm -rf $_svnmod-build
28   svn export $_svnmod $_svnmod-build
29   make -C $_svnmod-build || return 1
32 package() {
33   cd "$srcdir/$_svnmod-build"
34   make DESTDIR="$pkgdir" install
35   ln -sf wxHexEditor "$pkgdir/usr/bin/$_svnmod"