diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-08-22 08:12:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-08-22 08:12:36 +0000 |
commit | 778979325b80c0140f80ecb4558828ed3e8544f4 (patch) | |
tree | 586cd4aff8e5a41471f84348bc40d7dc8211d63d | |
parent | 8cae7d3770fc1921865d50994af75d83116c597c (diff) | |
download | aports-778979325b80c0140f80ecb4558828ed3e8544f4.tar.bz2 aports-778979325b80c0140f80ecb4558828ed3e8544f4.tar.xz |
testing/apache-mod-auth-gssapi: new aport
GSSAPI Authentication module for Apache
https://github.com/modauthgssapi/mod_auth_gssapi
-rw-r--r-- | testing/apache-mod-auth-gssapi/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/apache-mod-auth-gssapi/APKBUILD b/testing/apache-mod-auth-gssapi/APKBUILD new file mode 100644 index 0000000000..14c6871113 --- /dev/null +++ b/testing/apache-mod-auth-gssapi/APKBUILD @@ -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" |