PKGBUILDs/community/uniconvertor/PKGBUILD

23 lines
681 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# Contributor: Roberto Alsina <ralsina@kde.org>
pkgname=uniconvertor
pkgver=1.1.4
pkgrel=1
pkgdesc="A universal vector graphics translator using sK1 engine."
arch=('i686' 'x86_64')
url="http://sk1project.org/modules.php?name=Products&product=uniconvertor"
license=('GPL')
depends=('python' 'pil' 'python-reportlab')
makedepends=('gcc')
source=(http://sk1project.org/downloads/uniconvertor/v$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('91c2f372191959c9c6da85b6e18e04ee')
build() {
cd "$startdir/src/UniConvertor-$pkgver"
python setup.py build || return 1
python setup.py install --root="$startdir/pkg" || return 1
mv $pkgdir/usr/bin/uniconv $pkgdir/usr/bin/uniconvertor
}