diff --git a/nghttp2/trunk/PKGBUILD b/nghttp2/trunk/PKGBUILD index 04e031fd66a..7b4a4788fb6 100644 --- a/nghttp2/trunk/PKGBUILD +++ b/nghttp2/trunk/PKGBUILD @@ -3,22 +3,25 @@ pkgname=nghttp2 pkgver=1.41.0 -pkgrel=1 +pkgrel=2 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library' arch=(x86_64) url='https://nghttp2.org/' license=(MIT) depends=(openssl libev zlib libxml2 jansson jemalloc c-ares libnghttp2 systemd-libs) +makedepends=(git) options=(!emptydirs) -source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz) +source=(git+https://github.com/nghttp2/nghttp2.git#tag=v${pkgver}?signed) +validpgpkeys=(F4F3B91474D1EB29889BD0EF7E8403D5D673C366) # Tatsuhiro Tsujikawa +sha512sums=('SKIP') + backup=( etc/nghttpx/nghttpx.conf etc/logrotate.d/nghttpx ) -sha512sums=('c92e8022ccc876fa311f21bc5bf5af75feff8232efb56a4b2ab198031e974d15b67c16c046188cc76552f75a1b2e7115925d6ce1e42d6f94ae482fe69727466d') build() { - cd nghttp2-$pkgver + cd nghttp2 autoreconf -i ./configure \ @@ -29,12 +32,12 @@ build() { } check() { - cd nghttp2-$pkgver + cd nghttp2 make check } package() { - cd nghttp2-$pkgver + cd nghttp2 make DESTDIR="$pkgdir" install make -C lib DESTDIR="$pkgdir" uninstall