mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
testing/apache-mod-auth-gssapi: new aport
GSSAPI Authentication module for Apache https://github.com/modauthgssapi/mod_auth_gssapi
This commit is contained in:
parent
8cae7d3770
commit
778979325b
1 changed files with 33 additions and 0 deletions
33
testing/apache-mod-auth-gssapi/APKBUILD
Normal file
33
testing/apache-mod-auth-gssapi/APKBUILD
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Maintainer:
|
||||
pkgname=apache-mod-auth-gssapi
|
||||
pkgver=1.6.1
|
||||
pkgrel=0
|
||||
pkgdesc="GSSAPI Authentication module for Apache"
|
||||
url="https://github.com/modauthgssapi/mod_auth_gssapi"
|
||||
arch="all"
|
||||
license="MIT"
|
||||
depends="apache2"
|
||||
makedepends="apache2-dev krb5-dev"
|
||||
source="https://github.com/modauthgssapi/mod_auth_gssapi/releases/download/v$pkgver/mod_auth_gssapi-$pkgver.tar.gz"
|
||||
|
||||
builddir="$srcdir"/mod_auth_gssapi-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
mkdir -p "$pkgdir"/etc/apache2/conf.d \
|
||||
"$pkgdir"/usr/lib/apache2
|
||||
install -D -m755 ./src/.libs/*.so "$pkgdir"/usr/lib/apache2
|
||||
echo "LoadModule auth_gssapi_module modules/mod_auth_gssapi.so" \
|
||||
> "$pkgdir"/etc/apache2/conf.d/mod-auth-gssapi.conf
|
||||
}
|
||||
|
||||
sha512sums="56b770124826b3fe33af8b7022a4c16f979c7f25cb40a0f0c6320beb9ecc0add96f1586fddc6998551cefdaef366ab798346f69db823a3bf607ca9dc561c1f60 mod_auth_gssapi-1.6.1.tar.gz"
|
Loading…
Add table
Add a link
Reference in a new issue