]> git.pld-linux.org Git - packages/boa.git/blob - boa.spec
- some cleanup
[packages/boa.git] / boa.spec
1 Summary:        Boa high speed HTTP server
2 Summary(pl):    Boa - szybki serwer HTTP
3 Name:           boa
4 Version:        0.93.16.1
5 Release:        1
6 Copyright:      GPL
7 Group:          Networking/Daemons
8 Source:         http://www.cz.boa.org/updates/%{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 -p0
25
26 %build
27 cd src
28 %configure
29 make
30
31 %install
32 install -d $RPM_BUILD_ROOT/home/httpd/{conf,logs,util,html}
33
34 install -s src/boa $RPM_BUILD_ROOT/home/httpd/
35
36 install conf/* $RPM_BUILD_ROOT/etc/httpd/conf/
37 install docs/* $RPM_BUILD_ROOT/home/boa/docs/
38 install util/* $RPM_BUILD_ROOT/home/boa/util/
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(644,root,root,755)
45 %doc README docs
46 %attr(750, http, www) %dir /etc/httpd/conf
47 %attr(750, http, www) %config /etc/httpd/conf/*
48 %attr(755, http, www) /home/httpd/util
49 %attr(755, http, www) /home/httpd/html
50 %attr(750, http, www) /var/log/httpd/
This page took 0.17281 seconds and 4 git commands to generate.