56 lines
1.5 KiB
RPMSpec
56 lines
1.5 KiB
RPMSpec
Name: mod_auth_openidc
|
|
Version: 1.8.7
|
|
Release: 1%{?dist}
|
|
Summary: OpenID Connect auth module for Apache HTTP Server
|
|
|
|
Group: System Environment/Daemons
|
|
License: ASL 2.0
|
|
URL: https://github.com/pingidentity/mod_auth_openidc
|
|
Source0: https://github.com/pingidentity/mod_auth_openidc/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: httpd-devel
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: curl-devel
|
|
BuildRequires: jansson-devel
|
|
BuildRequires: hiredis-devel
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
Requires: httpd-mmn = %{_httpd_mmn}
|
|
|
|
%description
|
|
This module enables an Apache 2.x web server to operate as
|
|
an OpenID Connect Relying Party and/or OAuth 2.0 Resource Server.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
# workaround rpm-buildroot-usage
|
|
export APXS2_OPTS='-S LIBEXECDIR=${MODULES_DIR}'
|
|
export MODULES_DIR=%{_httpd_moddir}
|
|
autoreconf
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT%{_httpd_moddir}
|
|
make install MODULES_DIR=$RPM_BUILD_ROOT%{_httpd_moddir}
|
|
|
|
install -m 755 -d $RPM_BUILD_ROOT%{_httpd_modconfdir}
|
|
echo 'LoadModule auth_openidc_module modules/mod_auth_openidc.so' > \
|
|
$RPM_BUILD_ROOT%{_httpd_modconfdir}/10-auth_openidc.conf
|
|
|
|
%files
|
|
%license LICENSE.txt
|
|
%doc ChangeLog
|
|
%{_httpd_moddir}/mod_auth_openidc.so
|
|
%config(noreplace) %{_httpd_modconfdir}/10-auth_openidc.conf
|
|
|
|
%changelog
|
|
* Sat Jan 09 2016 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 1.8.7-1
|
|
- Update to 1.8.7 (#1297080)
|
|
|
|
* Sat Nov 07 2015 Jan Pazdziora <jpazdziora@redhat.com> 1.8.6-1
|
|
- Initial packaging for Fedora 23.
|