summaryrefslogtreecommitdiffstats
path: root/main/gimp/APKBUILD
blob: 9bd7c69112e0ba820474b14f0a78bf60921fbddc (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gimp
pkgver=2.8.10
pkgrel=0
pkgdesc="GNU Image Manipulation Program"
url="http://www.gimp.org/"
arch="all"
license="GPL"
makedepends="gtk+-dev libxpm-dev libxmu-dev librsvg-dev dbus-glib-dev
	libexif-dev desktop-file-utils intltool gegl-dev tiff-dev
	libjpeg-turbo-dev libpng-dev iso-codes lcms-dev poppler-dev babl-dev"
install=
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="ftp://ftp.$pkgname.org/pub/$pkgname/v${pkgver%.*}/$pkgname-$pkgver.tar.bz2
	"

_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
	cd "$_builddir"

	for i in $source; do
		case $i in
		*.patch)
			msg "Applying $i..."
			patch -s -p1 -N -i "$srcdir"/$i || return 1
			;;
		esac
	done
}

build() { 
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--disable-dependency-tracking \
		--sysconfdir=/etc \
		--enable-mp \
		--enable-gimp-console \
		--enable-gimp-remote \
		--disable-python \
		--with-gvfs \
		--without-gnomevfs \
		--with-gif-compression=lzw \
		--without-aa \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	ln -s gimptool-2.0 "$pkgdir/usr/bin/gimptool" || return 1
	find "$pkgdir" -name '*.la' -delete
}

md5sums="84c964aab7044489af69f7319bb59b47  gimp-2.8.10.tar.bz2"
sha256sums="e7fd8b19f989138d826003c75f56bd5b6f136eef597e86e3978ede0bba470ae6  gimp-2.8.10.tar.bz2"
sha512sums="21c96832ce61ecb2dad5276b454e7965263b6733add7e4a95cfc5f308fca681bceab21c1b77921332e0725d0e514e06868a4698ca9d7e4b30a28a07c7356a3a8  gimp-2.8.10.tar.bz2"