# $Id: PKGBUILD 200656 2013-12-01 09:50:21Z andyrtr $ # Maintainer: Gaetan Bisson # Contributor: Tobias Kieslich # Contributor: tobias pkgname=inkscape pkgver=0.48.4 pkgrel=13 pkgdesc='Vector graphics editor using the SVG file format' url='http://inkscape.sourceforge.net/' license=('GPL' 'LGPL') arch=('i686' 'x86_64') makedepends=('boost' 'intltool') depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib>=0.24.4' 'popt' 'python2' 'desktop-file-utils' 'hicolor-icon-theme') optdepends=('pstoedit: latex formulas' 'texlive-core: latex formulas' 'python2-numpy: some extensions' 'python2-lxml: some extensions and filters' 'uniconvertor: reading/writing to some proprietary formats') source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2 spuriouscomma.patch build_fix.diff) sha1sums=('5f26f6ad191d1e7c2a9fb69a438722beb172224c' '7d1d5a6d1d2b0926721a994d5889c52890fc57c1' 'aba4d98bebae088c3401fd9259ea3cf70b96fbbf') install=install prepare() { cd ${pkgname}-${pkgver} patch -p0 -i ../spuriouscomma.patch # fix build with freetype 2.5.1 patch -Np0 -i ../build_fix.diff sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' share/*/{test/,}*.py sed -i 's|"python" },|"python2" },|g' src/extension/implementation/script.cpp sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py sed -i 's|"python"|"python2"|g' src/main.cpp sed -i '/^#include ' src/*{,/*{,/*{,/*}}}.{h,cpp} } build() { cd ${pkgname}-${pkgver} ./configure \ --prefix=/usr \ --with-python \ --with-perl \ --enable-lcms \ --enable-poppler-cairo \ --disable-dependency-tracking make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install }