core/glib-networking/PKGBUILD
2017-10-23 00:10:01 +02:00

33 lines
802 B
Bash

# Imported from CCR
pkgname=glib-networking
pkgver=2.54.0
pkgrel=1
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=('5961b3779080b72314b373ff5d4790eb7e41b75ca91816ad7a81ef32922f7096')
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=
}