]> git.pld-linux.org Git - packages/apache1-mod_fastcgi.git/blob - apache1-mod_fastcgi.spec
- initial revision
[packages/apache1-mod_fastcgi.git] / apache1-mod_fastcgi.spec
1 Summary:        Support for the FastCGI protocol for apache webserver
2 Name:           apache-mod_fastcgi
3 Version:        2.2.8
4 Release:        1
5 Copyright:      Open Market
6 Group:          Networking/Daemons
7 Group(de):      Netzwerkwesen/Server
8 Group(pl):      Sieciowe/Serwery
9 URL:            http://www.FastCGI.com/
10 Source0:        http://www.FastCGI.com/dist/mod_fastcgi_%{version}.tar.gz
11 Requires:       apache >= 1.3.1
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13 BuildRequires:  apache-devel
14
15 %description
16 This 3rd party module provides support for the FastCGI protocol.
17 FastCGI is a language independent, scalable, open extension to CGI
18 that provides high performance and persistence without the limitations
19 of server specific APIs.
20
21 %define         _libexecdir     /usr/lib/apache
22 %define         _htmldocdir     /home/httpd/html/docs/%{name}_%{version}
23
24 %prep
25 %setup -q -n mod_fastcgi_%{version}
26
27 %build
28 apxs -o mod_fastcgi.so -c *.c
29 strip mod_fastcgi.so
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 install -d $RPM_BUILD_ROOT{%{_libexecdir},%{_htmldocdir}}
34
35 install mod_fastcgi.so $RPM_BUILD_ROOT%{_libexecdir}
36
37 install docs/*.html $RPM_BUILD_ROOT%{_htmldocdir}
38
39 gzip -9nf docs/LICENSE.TERMS CHANGES
40
41 strip --strip-unneeded $RPM_BUILD_ROOT%{_libexecdir}/*
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc docs/*.gz CHANGES.gz
49 %doc %{_htmldocdir}
50 %attr(755,root,root) %{_libexecdir}/*
This page took 0.051211 seconds and 4 git commands to generate.