mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
617 B
Bash
22 lines
617 B
Bash
# Contributor: Raul Pons Lopez <raulponslopez+aur {at} gmail {dot} com>
|
|
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
|
|
pkgname=tucan
|
|
pkgver=0.3.9
|
|
pkgrel=1
|
|
pkgdesc="Download and upload manager for hosting sites."
|
|
arch=('i686' 'x86_64')
|
|
url="http://cusl3-tucan.forja.rediris.es/"
|
|
license=('GPL3')
|
|
depends=('pil' 'python' 'pygtk' 'tesseract' 'librsvg')
|
|
source=(http://forja.rediris.es/frs/download.php/1400/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('3e27a9b17f67d8523950522366b18b77')
|
|
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-0.3.8
|
|
make DESTDIR=$pkgdir/usr install
|
|
ln -sf /usr/share/tucan/tucan.py $pkgdir/usr/bin/tucan
|
|
}
|
|
|
|
|