blob: 286ff891bfd4b9ee3a0db150beae86ebec7a766a (
plain)
1 # Description: Low-level data structure handling, portability wrappers, and interfaces for runtime functionality
2 # URL: http://www.gtk.org/
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: libpcre
5
6 name=glib
7 version=2.18.1
8 release=2
9 source=(http://download.gnome.org/sources/$name/2.18/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --mandir=/usr/man --with-pcre=system
15 make
16 make DESTDIR=$PKG install
17 rm -rf $PKG/usr/share/{gtk-doc,locale}
18 }
|