mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
29 lines
893 B
Bash
29 lines
893 B
Bash
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
|
# Contributor: Angelo Theodorou <encelo@users.sourceforge.net>
|
|
|
|
pkgname=pida
|
|
pkgver=0.5.1
|
|
pkgrel=4
|
|
pkgdesc="Python Integrated Development Application"
|
|
arch=('i686' 'x86_64')
|
|
url="http://pida.co.uk"
|
|
license=('custom')
|
|
depends=('gnome-python' 'vte' 'kiwi')
|
|
source=(http://pida.googlecode.com/files/PIDA-$pkgver.tar.gz
|
|
pida.desktop)
|
|
install=pida.install
|
|
md5sums=('d24bbdc2c07172062cf55dffe58c85f6'
|
|
'0216466cf5f64238c90b5e07df71ce3a')
|
|
|
|
build() {
|
|
cd $startdir/src/PIDA-$pkgver
|
|
python setup.py install --root=$startdir/pkg/ --prefix=/usr
|
|
|
|
install -Dm644 COPYING \
|
|
$startdir/pkg/usr/share/licenses/pida/LICENSE
|
|
|
|
install -Dm644 pida/resources/pixmaps/pida-icon.png \
|
|
$startdir/pkg/usr/share/pixmaps/pida.png
|
|
install -Dm644 $startdir/src/pida.desktop \
|
|
$startdir/pkg/usr/share/applications/pida.desktop
|
|
}
|