e18b99a2d9
This release ships with some gdb python plugins, but they are installed no matter whether gdb or python are available. So no additional deps or potential footprint mismatches. The installed Python scripts are small, so I think it's okay to install them unconditionally.
19 lines
503 B
Plaintext
19 lines
503 B
Plaintext
# Description: Low-level data structure handling, portability wrappers, and interfaces for runtime functionality
|
|
# URL: http://www.gtk.org/
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: libpcre
|
|
|
|
name=glib
|
|
version=2.22.0
|
|
release=1
|
|
source=(http://download.gnome.org/sources/$name/2.22/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man --with-pcre=system
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/{gtk-doc,locale}
|
|
}
|