62 lines
1.5 KiB
Bash
62 lines
1.5 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=libnghttp2
|
|
pkgver=1.54.0
|
|
pkgrel=01
|
|
pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
|
|
url='https://nghttp2.org/'
|
|
depends=(glibc)
|
|
makedepends=('automake' 'autoconf' 'git')
|
|
conflicts=('nghttp2<1.20.0-2')
|
|
#source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
|
|
_tag='e15396731a7f627581db33ef607931a6fc208ec5' # git rev-parse v${pkgver}
|
|
source=("git+https://github.com/nghttp2/nghttp2.git#tag=${_tag}?signed")
|
|
|
|
prepare() {
|
|
cd nghttp2
|
|
|
|
autoreconf -i
|
|
}
|
|
|
|
build() {
|
|
|
|
cd nghttp2
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-examples \
|
|
--disable-python-bindings \
|
|
--enable-lib-only
|
|
make
|
|
}
|
|
|
|
check() {
|
|
# cd nghttp2-$pkgver
|
|
cd nghttp2
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
# cd nghttp2-$pkgver/lib
|
|
cd nghttp2/lib
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/libnghttp2/COPYING"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=(MIT)
|
|
|
|
validpgpkeys=('F4F3B91474D1EB29889BD0EF7E8403D5D673C366') # Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>
|
|
|
|
sha256sums=(SKIP)
|
|
|
|
## 8cade5062be3e2f6c93add56347d01ff4da77a180813f0e77f18dd5e59feb897 libnghttp2-1.54.0-01-x86_64.pkg.tar.lz
|
|
|