]> git.pld-linux.org Git - packages/radsecproxy.git/blame - radsecproxy.spec
- adapterized OpenSuse spec...
[packages/radsecproxy.git] / radsecproxy.spec
CommitLineData
3617ef69
PG
1###### Unknown group!
2Summary: RADIUS proxy that in addition to to usual RADIUS UDP transport, also supports TLS (RadSec)
3Name: radsecproxy
4Version: 1.1
5Release: 1.1
6License: Artistic License
7Group: Productivity/Networking/Radius/Clients
8URL: http://software.uninett.no/radsecproxy/
9Source0: %{name}-%{version}.tar.bz2
10BuildRequires: openssl-devel
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14radsecproxy is a generic RADIUS proxy that in addition to to usual
15RADIUS UDP transport, also supports TLS (RadSec). The aim is for the
16proxy to have sufficient features to be flexible, while at the same
17time to be small, efficient and easy to configure. Currently the
18executable on Linux is only about 48 Kb, and it uses about 64 Kb
19(depending on the number of peers) while running.
20
21%prep
22%setup -q
23
24%build
25%configure \
26 --enable-shadow \
27 --with-secure-path \
28
29
30%{__make}
31
32%install
33rm -rf $RPM_BUILD_ROOT
34%{__make} install \
35 DESTDIR=$RPM_BUILD_ROOT
36
37%post
38%{run_ldconfig}
39
40%postun
41%{run_ldconfig}
42
43%clean
44[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf %{buildroot}
45
46%files
47%defattr(644,root,root,755)
48%doc COPYING NEWS INSTALL AUTHORS ChangeLog
49#%config(noreplace) %{_sysconfdir}/radsecproxy.conf
50%attr(755,root,root) %{_sbindir}/radsecproxy
51%{_mandir}/man1/*
52%{_mandir}/man5/*
53%{_sysconfdir}/radsecproxy.conf-example
This page took 0.138626 seconds and 4 git commands to generate.