]> git.pld-linux.org Git - packages/boa.git/blob - boa.spec
- added using CVS keywords in %changelog (for automating them).
[packages/boa.git] / boa.spec
1 Summary:     Boa high speed HTTP server
2 Summary(pl): Boa - szyki serwer HTTP
3 Name:        boa
4 Version:     0.92
5 Release:     1
6 Copyright:   GPL
7 Group:       Networking/Daemons
8 Source:      %{name}-%{version}.tar.gz
9 Patch:       PLD-boa.diff
10 BuildRoot:      /tmp/%{name}-%{version}-root
11
12 %description
13 A high speed, lightweight web server (HTTP protocol).
14 Based on direct use of the select(2) system call, it internally multiplexes 
15 all connections without forking, for maximum speed and minimum system 
16 resource use.
17
18 %description -l pl
19 Szybki serwer HTTP, byæ mo¿e alternatywa dla Apache HTTP Server.
20 Nie korzystaj±cy z funkcji fork().
21
22 %prep
23 %setup -q
24 %patch 
25
26 %build
27 cd src
28 make
29
30 %install
31 install -d $RPM_BUILD_ROOT/home/httpd/{conf,logs,util,html}
32
33 install -s src/boa $RPM_BUILD_ROOT/home/httpd/
34
35 install conf/* $RPM_BUILD_ROOT/etc/httpd/conf/
36 install docs/* $RPM_BUILD_ROOT/home/boa/docs/
37 install util/* $RPM_BUILD_ROOT/home/boa/util/
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43 %defattr(644,root,root,755)
44 %doc README docs
45 %attr(750, http, www) %dir /etc/httpd/conf
46 %attr(750, http, www) %config /etc/httpd/conf/*
47 %attr(755, http, www) /home/httpd/util
48 %attr(755, http, www) /home/httpd/html
49 %attr(750, http, www) /var/log/httpd/
This page took 0.061451 seconds and 4 git commands to generate.