54 lines
1.6 KiB
Bash
54 lines
1.6 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=libmicrohttpd
|
|
pkgver=0.9.77
|
|
pkgrel=01
|
|
pkgdesc="a small C library that is supposed to make it easy to run an HTTP server as part of another application."
|
|
url="https://www.gnu.org/software/libmicrohttpd/"
|
|
depends=('gnutls')
|
|
checkdepends=('curl')
|
|
provides=('libmicrohttpd.so')
|
|
source=("https://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz"{,.sig})
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-dependency-tracking \
|
|
--disable-examples \
|
|
--enable-curl \
|
|
--enable-https \
|
|
--enable-largefile \
|
|
--enable-messages \
|
|
--with-pic
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
#---- arch license gpg-key and sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('LGPL')
|
|
|
|
validpgpkeys=('EA812DBEFA5A7EF17DA8F2C1460A317C3326D2AE' # Evgeny Grin (Karlson2k) <k2k@yandex.ru>
|
|
'D8423BCB326C7907033929C7939E6BE1E29FC3CC') # Christian Grothoff <christian.grothoff@bfh.ch>
|
|
|
|
sha256sums=(9e7023a151120060d2806a6ea4c13ca9933ece4eacfc5c9464d20edddb76b0a0 # libmicrohttpd-0.9.77.tar.gz
|
|
bace8be885ce71208eb4ab6836ee94a59031266ff26bd9ae36db06d13da09fcd) # libmicrohttpd-0.9.77.tar.gz.sig
|
|
|
|
## 9df8360e9de945599f06205dcb85ace59301fd61829b0f0b584982b84880264c libmicrohttpd-0.9.77-01-x86_64.pkg.tar.lz
|