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 /extra/inkscape |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/inkscape')
-rw-r--r-- | extra/inkscape/PKGBUILD | 45 | ||||
-rw-r--r-- | extra/inkscape/inkscape.install | 13 |
2 files changed, 58 insertions, 0 deletions
diff --git a/extra/inkscape/PKGBUILD b/extra/inkscape/PKGBUILD new file mode 100644 index 000000000..888adcdfc --- /dev/null +++ b/extra/inkscape/PKGBUILD @@ -0,0 +1,45 @@ +# $Id: PKGBUILD 114609 2011-03-14 15:02:27Z jgc $ +# Maintainer: tobias <tobias@archlinux.org> +# Contributor: Tobias Kieslich <tobias@justdreams.de> + +pkgname=inkscape +pkgver=0.48.1 +pkgrel=2 +pkgdesc='Vector graphics editor using the SVG file format' +url='http://inkscape.sourceforge.net/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL') +makedepends=('boost' 'pkg-config' 'intltool') +depends=('gc' 'gtkmm' 'poppler-glib' 'pyxml' 'libxslt' 'gsl' 'popt' 'python2' + 'gtkspell' 'imagemagick' 'desktop-file-utils' 'hicolor-icon-theme') +optdepends=('python2-numpy: some extensions' + 'python-lxml: some extensions and filters') +options=('!libtool') +install=inkscape.install +source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha1sums=('a43467119925aee70d1d63d746f9846abb4dea91') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --with-python \ + --with-perl \ + --without-gnome-vfs \ + --with-xft \ + --enable-lcms \ + --enable-poppler-cairo \ + --disable-dependency-tracking + + 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' share/extensions/uniconv*.py + sed -i 's|"python"|"python2"|g' src/main.cpp + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} diff --git a/extra/inkscape/inkscape.install b/extra/inkscape/inkscape.install new file mode 100644 index 000000000..c4b2efa09 --- /dev/null +++ b/extra/inkscape/inkscape.install @@ -0,0 +1,13 @@ +post_install() { + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + + +post_remove() { + post_install +} |