gtk/inkscape/PKGBUILD

59 lines
2.0 KiB
Bash
Raw Normal View History

# Contributions from ArchLinux: https://git.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/inkscape
2013-04-28 05:39:26 +08:00
pkgname=inkscape
2017-08-09 17:48:53 +08:00
pkgver=0.92.2
2018-01-31 10:44:59 +08:00
pkgrel=4
pkgdesc='Professional vector graphics editor'
url='https://inkscape.org/'
2013-04-28 05:39:26 +08:00
license=('GPL' 'LGPL')
arch=('x86_64')
depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib'
'popt' 'potrace' 'ttf-dejavu' 'python2' 'desktop-file-utils'
'hicolor-icon-theme')
2018-01-31 10:44:59 +08:00
# python is needed for glib-genmarshal (at least with GLib 2.54)
makedepends=('boost' 'intltool' 'python3')
2013-04-28 05:39:26 +08:00
optdepends=('pstoedit: latex formulas'
2018-01-31 10:44:59 +08:00
'python2-scour: optimized SVG output'
2013-04-28 05:39:26 +08:00
'texlive-core: latex formulas'
'python2-numpy: some extensions'
'python2-lxml: some extensions and filters'
'uniconvertor: reading/writing to some proprietary formats')
2018-01-31 10:44:59 +08:00
source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2"
poppler-0.58.patch)
2017-11-03 07:09:34 +08:00
sha256sums=('a628d0e04c254e9840947e6d866974f92c68ae31631a38b94d9b65e5cd84cfd3'
'0505f49cf69ad51159cda5aa5f497f001fe9d10f34d59e6ad704a1b1e1dc50c1')
2013-04-28 05:39:26 +08:00
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
2017-11-03 07:09:34 +08:00
# https://gitlab.com/inkscape/inkscape/commit/93ccf03162cd2e46d962822d5507865f3451168c
patch -Np1 -i ../poppler-0.58.patch
2018-01-31 10:44:59 +08:00
2017-01-05 07:22:37 +08:00
./autogen.sh
2013-04-28 05:39:26 +08:00
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
2018-01-31 10:44:59 +08:00
2017-11-03 07:09:34 +08:00
sed -i 's| abs(| std::fabs(|g' src/ui/tools/flood-tool.cpp
2013-04-28 05:39:26 +08:00
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
2013-04-28 05:39:26 +08:00
--with-python \
--with-perl \
--enable-lcms \
--enable-poppler-cairo \
2018-01-31 10:44:59 +08:00
--disable-strict-build \
2013-04-28 05:39:26 +08:00
--disable-dependency-tracking
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}