summaryrefslogtreecommitdiff
path: root/repo/apps/gimp/gimp.xibuild
blob: b11e920c63ebc35db3d0d9d9e1eae737555b1a8d (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.10.28
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
}