]> git.pld-linux.org Git - packages/balance.git/blob - balance.spec
- up to 3.54
[packages/balance.git] / balance.spec
1 Summary:        TCP proxy with load balancing
2 Summary(pl.UTF-8):      Proxy TCP z load balancingiem
3 Name:           balance
4 Version:        3.54
5 Release:        1
6 License:        GPL v2
7 Group:          Networking/Utilities
8 Source0:        http://www.inlab.de/%{name}-%{version}.tar.gz
9 # Source0-md5:  99854615cc58ceb2c5bbf29e35d18018
10 URL:            http://www.inlab.de/balance.html
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 Balance is our suprisingly successful load balancing solution being a
15 simple but powerful generic TCP proxy with round robin load balancing
16 and failover mechanisms. Its behaviour can be controlled at runtime
17 using a simple command line syntax.
18
19 %description -l pl.UTF-8
20 Balance jest prostym, ale bardzo skutecznym proxy TCP z load
21 balancingiem. Jego zachowanie w czasie działania może być kontrolowane
22 z linii poleceń, przy użyciu prostej składni.
23
24 %prep
25 %setup -q
26
27 %build
28 %{__make} balance \
29         CC="%{__cc}" \
30         CFLAGS="%{rpmcflags}"
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34 install -d $RPM_BUILD_ROOT{%{_sbindir},/var/run/balance,%{_mandir}/man1}
35
36 install balance $RPM_BUILD_ROOT%{_sbindir}
37 install balance.1 $RPM_BUILD_ROOT%{_mandir}/man1
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43 %defattr(644,root,root,755)
44 %doc README
45 %dir %attr(700,root,root) /var/run/balance
46 %attr(755,root,root) %{_sbindir}/balance
47 %{_mandir}/man1/*
This page took 0.030315 seconds and 3 git commands to generate.