core/glib-networking/PKGBUILD
2017-06-05 22:16:08 +01:00

33 lines
802 B
Bash

# Imported from CCR
pkgname=glib-networking
pkgver=2.48.0
pkgrel=2
pkgdesc="Network-related giomodules for glib"
arch=('x86_64')
url="http://www.gtk.org/"
license=(GPL2)
depends=('js17' 'glib2' 'libproxy' 'gnutls' 'ca-certificates' 'gsettings-desktop-schemas')
makedepends=('intltool')
install=glib-networking.install
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
sha256sums=('7a1f3312e757b97af94e2db8a1f14eb9cc018c983931ecdf3b0c54acece39024')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc \
--libexecdir=/usr/lib/$pkgname --disable-static \
--disable-installed-tests
make
}
check() {
cd $pkgname-$pkgver
make -j1 -k check
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install testfiles_DATA=
}