blob: a9a47ed9b467991a11b2d6b9fd05109f86383330 (
plain)
1 # Description: Low-level data structure handling, portability wrappers, and interfaces for runtime functionality
2 # URL: http://www.gtk.org/
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
4 # Depends on: libpcre libffi python
5
6 name=glib
7 version=2.40.0
8 release=1
9 source=(http://download.gnome.org/sources/$name/2.40/$name-$version.tar.xz)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --disable-man \
16 --with-pcre=system
17 make
18 make -j1 DESTDIR=$PKG install
19
20 install -d $PKG/usr/man/man1
21 find docs -name '*.1' -exec install -m 0644 {} $PKG/usr/man/man1 \;
22
23 rm -rf $PKG/usr/share/{gtk-doc,locale}
24 rm -r $PKG/usr/share/bash-completion
25 }
|