mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-03 07:47:21 +08:00
55 lines
1.8 KiB
Bash
55 lines
1.8 KiB
Bash
# Contributions from ArchLinux: https://git.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/inkscape
|
|
|
|
pkgname=inkscape
|
|
pkgver=0.92.3
|
|
pkgrel=1
|
|
pkgdesc='Professional vector graphics editor'
|
|
url='https://inkscape.org/'
|
|
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')
|
|
# python is needed for glib-genmarshal (at least with GLib 2.54)
|
|
makedepends=('boost' 'intltool' 'python3')
|
|
optdepends=('pstoedit: latex formulas'
|
|
'python2-scour: optimized SVG output'
|
|
'texlive-core: latex formulas'
|
|
'python2-numpy: some extensions'
|
|
'python2-lxml: some extensions and filters'
|
|
'uniconvertor: reading/writing to some proprietary formats')
|
|
source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2")
|
|
sha256sums=('063296c05a65d7a92a0f627485b66221487acfc64a24f712eb5237c4bd7816b2')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./autogen.sh
|
|
|
|
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 's| abs(| std::fabs(|g' src/ui/tools/flood-tool.cpp
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-python \
|
|
--with-perl \
|
|
--enable-lcms \
|
|
--enable-poppler-cairo \
|
|
--disable-strict-build \
|
|
--disable-dependency-tracking
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|