opt/glib/Pkgfile

23 lines
709 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: https://www.gtk.org/
2020-12-19 13:40:00 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libpcre util-linux meson ninja
2012-06-17 19:24:47 +02:00
name=glib
2020-12-19 13:40:00 +01:00
version=2.66.4
2020-05-23 09:53:46 +02:00
release=1
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz \
gschemas.compiled)
2012-06-17 19:24:47 +02:00
build () {
2020-12-19 13:40:00 +01:00
meson setup build $name-$version \
--prefix=/usr \
-D nls=disabled \
-D gtk_doc=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2013-04-06 11:24:19 +02:00
install -m 0644 $SRC/gschemas.compiled $PKG/usr/share/glib-2.0/schemas/gschemas.compiled
rm -r $PKG/usr/share/bash-completion
2012-06-17 19:24:47 +02:00
}