source: server/fedora/specs/httpdmods.spec @ 206

Last change on this file since 206 was 120, checked in by jbarnold, 17 years ago
updated all spec files to use numeric "Release:"
File size: 1.2 KB
Line 
1Summary: scripts.mit.edu custom apache modules
2Group: Applications/System
3Name: httpdmods
4Version: 0.00
5Release: 0
6Vendor: The scripts.mit.edu Team (scripts@mit.edu)
7URL: http://scripts.mit.edu
8License: GPL
9Source: %{name}.tar.gz
10BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root
11%define debug_package %{nil}
12
13%description 
14
15scripts.mit.edu custom apache modules
16Contains:
17 - module to do authentication based on SSL certificates <mod_auth_sslcert>
18 - module to do authorization based on Athena AFS groups <mod_authz_afsgroup>
19See http://scripts.mit.edu/wiki for more information.
20
21%prep
22%setup -q -n %{name}
23
24%build
25./configure CFLAGS="-I/usr/include/httpd -I/usr/include/apr-1"
26make
27
28%install
29[ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT
30install -D mod_auth_sslcert.so $RPM_BUILD_ROOT/usr/lib64/httpd/modules/mod_auth_sslcert.so
31install -D mod_authz_afsgroup.so $RPM_BUILD_ROOT/usr/lib64/httpd/modules/mod_authz_afsgroup.so
32
33%clean
34[ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT
35
36%files
37%defattr(0755, root, root)
38/usr/lib64/httpd/modules/mod_auth_sslcert.so
39/usr/lib64/httpd/modules/mod_authz_afsgroup.so
40
41%changelog
42
43* Sun Jan 13 2006  Jeff Arnold <jbarnold@MIT.EDU> 0.00
44- initial prerelease version
Note: See TracBrowser for help on using the repository browser.