blob: 7bd07818d23a6b1adeb564ea6b592e9c8ad6f3da (
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
|
# Description: Programme de retouche et manipulation d'image GNU
# URL: http://www.gimp.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gtk, libart_lgpl, pygtk, curl, libgtkhtml, libexif, openexr, gegl, poppler, libmng
name=gimp
version=2.6.8
release=2
source=(ftp://ftp.gimp.org/pub/gimp/v2.6/gimp-$version.tar.bz2 \
gimp-splash.png gimp.desktop)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--without-aa \
--disable-print
make
make DESTDIR=$PKG install
rm -f $PKG/usr/share/gimp/2.0/images/gimp-splash.png
cp ../gimp-splash.png $PKG/usr/share/gimp/2.0/images/gimp-splash.png
}
|