blob: 5c8c6b2396914c102ba584c782d6cbf2754d8b69 (
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
 | #!/bin/sh
NAME="gimp"
DESC="GNU Image Manipulation Program"
MAKEDEPS="make gettext"
DEPS="babl cairo fontconfig freetype2 gdk-pixbuf gexiv2 glib gtk2 harfbuzz json-glib lcms2 bzip2 libexecinfo intltool libjpeg-turbo libmypaint mypaint-brushes libpng librsvg libwebp libx11 libxext libxfixes libxmu libxpm musl pango poppler-glib gegl tiff xz zlib python glib-networking poppler-data"
PKG_VER=2.99.10
SOURCE="https://download.gimp.org/pub/gimp/v${PKG_VER%.*}/gimp-$PKG_VER.tar.bz2"
build () {
    ./configure \
		--disable-dependency-tracking \
		--sysconfdir=/etc \
		--enable-mp \
		--enable-gimp-console \
        --disable-python \
		--without-aa \
		--disable-check-update
    make
}
package () {
    make DESTDIR=$PKG_DEST install
}
 |