1
0
forked from ports/opt

23 lines
539 B
Plaintext
Raw Normal View History

2018-04-02 15:54:20 +10:00
# Description: Network-related giomodules for glib.
# URL: http://git.gnome.org/browse/glib-networking/
# Maintainer: Danny Rawlins, crux at romster dot me
2019-08-03 17:57:02 +10:00
# Depends on: gnutls gsettings-desktop-schemas
2018-04-02 15:54:20 +10:00
name=glib-networking
2019-10-15 19:25:13 +11:00
version=2.62.1
release=1
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
2018-04-02 15:54:20 +10:00
build() {
cd $name-$version
meson build \
--prefix /usr \
2019-08-03 23:23:28 +10:00
-Dlibproxy=disabled
2018-04-02 15:54:20 +10:00
ninja -C build -j ${JOBS:-1}
DESTDIR="$PKG" ninja -C build install
2018-07-25 22:03:57 +10:00
rm -r $PKG/usr/share/locale
2018-04-02 15:54:20 +10:00
}