diff options
author | Aurelien Desbrieres <aurelien@hackers.camp> | 2014-12-24 08:47:01 +0100 |
---|---|---|
committer | Aurelien Desbrieres <aurelien@hackers.camp> | 2014-12-24 08:47:01 +0100 |
commit | c91c5e5ebf2206fc48072184652671fc52b7c828 (patch) | |
tree | ac52e6e39d884141e1720e9f26197fac29c06311 /pcr/gnoduino | |
parent | 3bd93335b33fa5583bca70cd3124b4aeaa42b138 (diff) | |
parent | f723263fa6daa1d85cf2993c9c1baf04138d7fc3 (diff) | |
download | abslibre-c91c5e5ebf2206fc48072184652671fc52b7c828.tar.gz abslibre-c91c5e5ebf2206fc48072184652671fc52b7c828.tar.bz2 abslibre-c91c5e5ebf2206fc48072184652671fc52b7c828.zip |
gnoduino updated
Diffstat (limited to 'pcr/gnoduino')
-rw-r--r-- | pcr/gnoduino/PKGBUILD | 42 | ||||
-rw-r--r-- | pcr/gnoduino/gnoduino.install | 23 |
2 files changed, 65 insertions, 0 deletions
diff --git a/pcr/gnoduino/PKGBUILD b/pcr/gnoduino/PKGBUILD new file mode 100644 index 000000000..329c5a5bd --- /dev/null +++ b/pcr/gnoduino/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer : Aurelien Desbriers <aurelien@hackers.camp> +# Contributor: speps <speps at aur dot archlinux dot org> + +pkgname=gnoduino +pkgver=0.5.1 +pkgrel=1 +pkgdesc="An implementation of well-known Arduino IDE for GNOME" +arch=(any) +url="http://gnome.eu.org/index.php/Gnoduino" +license=('GPL') +depends=('avr-libc' 'avrdude' 'avr-binutils' 'gcc-avr' 'pyxdg' + 'pygtksourceview2' 'python2-pyserial' + 'python2-gconf' 'desktop-file-utils') +makedepends=('python2-distribute') +install="$pkgname.install" +source=("http://gnome.eu.org/$pkgname-$pkgver.tar.gz") + +prepare() { + cd $pkgname-$pkgver + + # do not install gconf schema + sed -i "/installSchema.*)$/d" setup.py + + # python2 shebang + sed -i "s|bin/python$|&2|" `find . -name "*.py"` +} + +build() { + cd $pkgname-$pkgver + python2 setup.py build +} + +package() { + cd $pkgname-$pkgver + python2 setup.py install --root="$pkgdir/" + + # gconf schema + install -Dm644 data/$pkgname.schemas \ + "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" +} + +# vim:set ts=2 sw=2 et: diff --git a/pcr/gnoduino/gnoduino.install b/pcr/gnoduino/gnoduino.install new file mode 100644 index 000000000..fd110bee7 --- /dev/null +++ b/pcr/gnoduino/gnoduino.install @@ -0,0 +1,23 @@ +pkgname=gnoduino + +post_install() { + usr/sbin/gconfpkg --install ${pkgname} + post_remove +} + +pre_upgrade() { + pre_remove +} + +post_upgrade() { + post_install +} + +pre_remove() { + usr/sbin/gconfpkg --uninstall ${pkgname} +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q +} |