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
|
# Description: Librairie multiplatforme permettant des interfaces graphiques
# URL: http://www.gtk.org/
# Maintainer: piernov <piernov@piernov.org>
# Packager: piernov <piernov@piernov.org>
# Depends on: gtk, cairo, pango, atk, libtiff, shared-mime-info, libcups, kerberos, gdk-pixbuf, xorg-libxi, xorg-libxcursor
# Run on: gtk,cairo,pango,atk,libtiff,gdk-pixbuf,shared-mime-info,libcups,kerberos,xorg-libxi,xorg-libxcursor
name=gtk3
version=3.1.16
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${version%.*}/gtk+-$version.tar.xz)
build() {
cd gtk+-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--enable-colord=yes \
--enable-gtk2-dependency \
--disable-schemas-compile \
--enable-x11-backend \
--with-x
make
make DESTDIR=$PKG install
}
|