blob: af8f0ec0c7c443d359bd3d307e00fe8bdece4a45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: alzeih <alzeih@users.noreply.github.com>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=mod_auth_openidc
pkgver=2.4.16.10
pkgrel=1
pkgdesc='OpenID Connect Relying Party implementation for Apache 2.x'
arch=(x86_64)
url='https://www.mod-auth-openidc.org'
_url="https://github.com/OpenIDC/$pkgname/"
license=(Apache-2.0)
depends=(apr-util
cjose
curl
openssl
pcre2)
makedepends=(apache
jansson)
_archive="$pkgname-$pkgver"
source=("$_url/releases/download/v$pkgver/$_archive.tar.gz")
sha256sums=('9dc1fd3e9f6c188baa8c812aedb5f98b2e426b6836be14853aef5956ffd0cfd6')
build() {
cd "$_archive"
./configure --prefix=/usr
make
}
package() {
cd "$_archive"
make DESTDIR="$pkgdir" install
}
|