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/uniconvertor |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/uniconvertor')
-rw-r--r-- | community/uniconvertor/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/uniconvertor/PKGBUILD b/community/uniconvertor/PKGBUILD new file mode 100644 index 000000000..2196cd9aa --- /dev/null +++ b/community/uniconvertor/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 26525 2010-09-15 22:29:59Z schuay $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Roberto Alsina <ralsina@kde.org> + +pkgname=uniconvertor +pkgver=1.1.5 +pkgrel=3 +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=('python2' 'pil' 'python-reportlab' 'sk1libs') +makedepends=('gcc') +source=(http://uniconvertor.googlecode.com/files/uniconvertor-$pkgver.tar.gz) +md5sums=('d1272315a58304ece2ff588834e23f72') + +build() { + cd "$srcdir/uniconvertor-$pkgver" + + # python2 fix + sed -i 's_#! /usr/bin/python_#! /usr/bin/python2_' src/__init__.py + + python2 setup.py build + python2 setup.py install --root="$pkgdir" +} |