]> git.pld-linux.org Git - packages/dhcp-helper.git/blob - dhcp-helper.spec
- initial, init script to run dhcp-helper
[packages/dhcp-helper.git] / dhcp-helper.spec
1 Summary:        simple, straightforward DHCP relay agent
2 Summary(pl):    prosty, nieskomplikowany DHCP relay
3 Name:           dhcp-helper
4 Version:        0.2
5 Release:        1
6 License:        GPL
7 Group:          Networking/Daemons
8 Source0:        http://thekelleys.org.uk/dhcp-helper/%{name}-%{version}.tar.gz
9 # Source0-md5:  2ad69a3388b0750c66cc9da212397a90
10 URL:            http://thekelleys.org.uk/dhcp-helper/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 This is a simple, straightforward DHCP relay agent, written as
15 alternative to the ISC relay.
16
17 %description -l pl
18 To jest prosty, nieskomplikowany agent DHCP relay, napisany jako
19 alternatywa dla relaya autorstwa ISC.
20
21 %prep
22 %setup -q
23
24 %build
25 %{__make} \
26         CFLAGS="%{rpmcflags}"
27
28 %install
29 rm -rf $RPM_BUILD_ROOT
30 install -d $RPM_BUILD_ROOT
31
32 %{__make} install \
33         DESTDIR=$RPM_BUILD_ROOT \
34         BINDIR="%{_sbindir}" \
35         MANDIR="%{_mandir}"
36
37 %clean
38 rm -rf $RPM_BUILD_ROOT
39
40 %files
41 %defattr(644,root,root,755)
42 %doc README
43 %attr(755,root,root) %{_sbindir}/*
44 %{_mandir}/man*/*
This page took 0.054565 seconds and 3 git commands to generate.