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/tucan |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/tucan')
-rw-r--r-- | community/tucan/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/tucan/PKGBUILD b/community/tucan/PKGBUILD new file mode 100644 index 000000000..5dd2d1a95 --- /dev/null +++ b/community/tucan/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> +# Contributor: Raul Pons Lopez <raulponslopez+aur {at} gmail {dot} com> + +pkgname=tucan +pkgver=0.3.10 +pkgrel=1 +pkgdesc='Download and upload manager for hosting sites' +arch=('i686' 'x86_64') +url='http://tucaneando.com/index.html' +license=('GPL3') +depends=('python-imaging' 'python2' 'pygtk' 'tesseract' 'librsvg') +source=("http://build-tucan-doc.googlecode.com/files/tucan-${pkgver}.tar.gz") +md5sums=('35f49eb3f118051817d3692a13fa922c') + +build() { + cd ${pkgname}-${pkgver} + + # python2 fix + sed -i 's_usr/bin/env python_usr/bin/env python2_' tucan.py +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir}/usr install + ln -sf /usr/share/tucan/tucan.py ${pkgdir}/usr/bin/tucan +} |