blob: e639567f2f5c1549d6483fae5dd82c7edf87500a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer: Behnam Momeni <sbmomeni [at the] gmail [dot] com>
# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor: Daniel Isenmann <daniel@archlinux.org>
pkgname=lib32-gimp
_pkgbase=gimp
pkgver=2.10.36
_pkg_ver="${pkgver//./_}"
pkgrel=3
pkgdesc='GNU Image Manipulation Program (32-bit)'
url="https://www.gimp.org/"
arch=('x86_64')
depends=('lib32-dbus-glib' 'lib32-gegl' 'lib32-glib-networking'
'lib32-lcms2' 'lib32-libgudev'
'lib32-cairo' 'lib32-libmypaint' 'lib32-gtk2'
'lib32-libxmu'
'lib32-glib2' 'lib32-glibc' 'lib32-gdk-pixbuf2' 'lib32-pango'
'lib32-libunwind' 'lib32-poppler-glib' 'gimp')
makedepends=('alsa-lib' 'curl' 'ghostscript' 'intltool' 'iso-codes')
license=('GPL' 'LGPL')
source=("https://gitlab.gnome.org/GNOME/gimp/-/archive/GIMP_${_pkg_ver}/gimp-GIMP_${_pkg_ver}.tar.bz2")
sha256sums=('8c4d52639e5890fcb8a622e55a1ff1874598f8342a31adc05bfd70d6be698ada')
build() {
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
export CFLAGS="-m32 ${CFLAGS}"
export LDFLAGS="-m32 ${LDFLAGS}"
export CXXFLAGS="-m32 ${CXXFLAGS}"
pkg-config --exists --print-errors "OpenEXR >= 1.6.1"
cd "gimp-GIMP_${_pkg_ver}/"
./autogen.sh --disable-gtk-doc \
--prefix=/usr \
--libdir=/usr/lib32 \
--sysconfdir=/etc \
--libexecdir=/usr/bin \
--enable-mp \
--enable-gimp-console \
--without-webkit \
--disable-check-update \
--disable-python \
--with-bug-report-url='https://bugs.archlinux.org/?string=gimp' \
--without-openexr \
--without-jpegxl \
--without-jpeg2000 \
--without-libheif \
--without-libxpm \
--without-libmng \
--without-webp \
--without-wmf \
--without-aa
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
package() {
cd "gimp-GIMP_${_pkg_ver}/"
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}/usr/"{share,include,bin}
rm -r "${pkgdir}/etc"
}
|