updated on Tue Jan 10 16:09:17 UTC 2012
[aur-mirror.git] / pype / PKGBUILD
blob71e9d020ffaa595d85156c6553c57f182f0c49c5
1 # Maintainer: David Scholl <djscholl at gmail dot com> 
2 pkgname=pype
3 pkgver=2.9.1
4 pkgrel=1
5 pkgdesc="A lightweight but powerful Python Programmers Editor"
6 arch=('any')
7 url="http://pype.sourceforge.net/index.shtml"
8 license=('GPL')
9 depends=('wxpython')
10 makedepends=('unzip')
11 source=(http://downloads.sourceforge.net/sourceforge/$pkgname/PyPE-${pkgver}-src.zip 
12         pype.desktop pype)
13 md5sums=('dbd964244cb89b8e15944e78be2e0d65'
14          'c430b7333a007ee809bdaa22de020f75'
15          'ad77f30cc3dbca5e822fc50c3fc3b399')
17 build() {
18   install -d $pkgdir/usr/bin
19   cp $pkgname $pkgdir/usr/bin || return 1
20   chmod a+x $pkgdir/usr/bin/$pkgname || return 1
21   install -d $pkgdir/usr/share/applications
22   cp pype.desktop $pkgdir/usr/share/applications
23   cd $srcdir/PyPE-$pkgver
24   install -d $pkgdir/opt/$pkgname
25   cp -R * $pkgdir/opt/$pkgname || return 1