mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
56 lines
2.1 KiB
Bash
56 lines
2.1 KiB
Bash
pkgname=gimp
|
|
pkgver=2.10.4
|
|
_pkgver=2.10
|
|
pkgrel=1
|
|
pkgdesc="GNU Image Manipulation Program (Development Version)"
|
|
arch=('x86_64')
|
|
url="http://www.gimp.org/"
|
|
license=('GPL3' 'LGPL3')
|
|
depends=('babl' 'dbus-glib' 'desktop-file-utils' 'gegl' 'glib-networking' 'hicolor-icon-theme'
|
|
'jasper' 'lcms' 'libheif' 'libexif' 'libgudev' 'libmng' 'libmypaint' 'librsvg' 'libwebp'
|
|
'libwmf' 'libxmu' 'libxpm' 'mypaint-brushes' 'openexr' 'poppler-data' 'pygtk' 'libgexiv2')
|
|
makedepends=('alsa-lib' 'curl' 'ghostscript' 'gtk-doc' 'intltool' 'iso-codes' 'poppler-glib' 'poppler-data')
|
|
optdepends=('gutenprint: for sophisticated printing only as gimp has built-in cups print support'
|
|
'poppler-glib: for pdf support'
|
|
'alsa-lib: for MIDI event controller module'
|
|
'curl: for URI support'
|
|
'ghostscript: for postscript support')
|
|
source=("http://download.gimp.org/pub/gimp/v${_pkgver}/$pkgname-$pkgver.tar.bz2" "linux.gpl")
|
|
md5sums=('9e0a3703a920da8b3e51e845fa3bff7d'
|
|
'bb27bc214261d36484093e857f015f38')
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
_mypaintver=$(echo /usr/lib/libmypaint-*.so | grep -o -E '\-[0-9]+(\.[0-9]+)*' | head -1)
|
|
sed -i "s|\\(libmypaint\\)\\( >= libmypaint_required_version\\)|\\1${_mypaintver}\\2|g" configure.ac
|
|
autoreconf -vi
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
|
|
--enable-mp \
|
|
--enable-gimp-console \
|
|
--enable-python \
|
|
--with-libcurl \
|
|
--with-gif-compression=lzw \
|
|
--with-gimpdir=.config/gimp \
|
|
--without-aa \
|
|
--without-hal \
|
|
--without-gvfs \
|
|
--without-gnomevfs
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' $pkgdir/usr/lib/gimp/2.0/plug-ins/*.py
|
|
install -D -m644 ../linux.gpl $pkgdir/usr/share/gimp/2.0/palettes/Linux.gpl
|
|
|
|
ln -sf gimp-console-$pkgver.1.gz $pkgdir/usr/share/man/man1/gimp-console.1.gz
|
|
ln -sf gimprc-$pkgver.5.gz $pkgdir/usr/share/man/man5/gimprc.5.gz
|
|
ln -sf gimptool-2.0.1.gz $pkgdir/usr/share/man/man1/gimptool.1.gz
|
|
ln -s gimp-$pkgver.1.gz $pkgdir/usr/share/man/man1/gimp.1.gz
|
|
}
|