opt/glib/Pkgfile

28 lines
813 B
Plaintext
Raw Normal View History

2012-06-17 19:24:47 +02:00
# Description: Low-level data structure handling, portability wrappers, and interfaces for runtime functionality
# URL: http://www.gtk.org/
2012-06-19 01:45:33 +02:00
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: libpcre libffi python
2012-06-17 19:24:47 +02:00
name=glib
2015-02-26 21:43:36 +01:00
version=2.42.2
2014-09-21 00:36:08 +02:00
release=1
2014-10-23 21:55:39 +02:00
source=(http://download.gnome.org/sources/$name/2.42/$name-$version.tar.xz \
2014-09-04 23:29:07 +02:00
no-schemas-segfault-fix-2.patch)
2012-06-17 19:24:47 +02:00
build () {
cd $name-$version
2014-09-04 23:29:07 +02:00
patch -p1 -i $SRC/no-schemas-segfault-fix-2.patch
2013-05-16 12:28:01 +02:00
2012-06-17 19:24:47 +02:00
./configure --prefix=/usr \
2013-04-05 20:27:22 +02:00
--disable-man \
2013-04-06 11:24:19 +02:00
--with-pcre=system
2012-06-17 19:24:47 +02:00
make
make -j1 DESTDIR=$PKG install
2013-04-06 11:24:19 +02:00
install -d $PKG/usr/man/man1
find docs -name '*.1' -exec install -m 0644 {} $PKG/usr/man/man1 \;
2012-06-17 19:24:47 +02:00
rm -rf $PKG/usr/share/{gtk-doc,locale}
2012-07-15 12:06:13 +02:00
rm -r $PKG/usr/share/bash-completion
2012-06-17 19:24:47 +02:00
}