summaryrefslogtreecommitdiff
path: root/skip/gimp.xibuild
blob: 536fc2e7eaf44728ec5b50ca2f5fde36bd1c074d (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 "
DEPS="babl cairo fontconfig freetype2 gdk-pixbuf gexiv2 glib gtk2 harfbuzz json-glib lcms2 bzip2 libexecinfo intltool libjpeg-turbo libmypaint libpng librsvg libwebp libx11 libxext libxfixes libxmu libxpm musl pango poppler gegl tiff xz zlib python"

PKG_VER=2.10.30
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
}