]> git.pld-linux.org Git - packages/diag-ether.git/blob - diag-ether.spec
- massive attack: source-md5
[packages/diag-ether.git] / diag-ether.spec
1 Summary:        Diagnostic program for Ethernet adapters under Linux
2 Summary(pl):    Programy diagnostyczne dla kart sieciowych
3 Name:           diag-ether
4 # Version is last update date: yyyymmdd
5 Version:        20021228
6 Release:        1
7 Vendor:         Donald Becker <becker@scyld.com>
8 License:        GPL
9 Group:          Networking/Admin
10 # Manually packaged using sources at: ftp://www.scyld.com/pub/diag/
11 Source0:        %{name}-%{version}.tar.bz2
12 # Source0-md5:  9725293e341f131b994df33ee9b48123
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Diagnostic and configuration programs for most common Ethernet
17 adapters supported by Linux.
18
19 %description -l pl
20 Narzêdzia diagnostyczne i konfiguracyjne dla najbardziej popularnych
21 kart Ethernet pracuj±cych pod Linuxem.
22
23 %prep
24 %setup -q -n %{name}
25
26 %build
27 %{__make} CC="%{__cc}" CFLAGS="%{rpmcflags}"
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31
32 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man8}
33 for bin in *; do
34         if [ -x $bin ]; then
35                 install $bin    $RPM_BUILD_ROOT%{_sbindir}
36         fi
37 done
38 install *.8 $RPM_BUILD_ROOT%{_mandir}/man8
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(644,root,root,755)
45 %attr(755,root,root) %{_sbindir}/*
46 %attr(644,root,root) %{_mandir}/man8/*
This page took 0.049993 seconds and 3 git commands to generate.