]> git.pld-linux.org Git - SPECS.git/blob - makebootfat.spec
SPECS updated Mon 29 Apr 22:05:02 CEST 2024
[SPECS.git] / makebootfat.spec
1 Summary:        The bootable USB disk generator
2 Summary(pl.UTF-8):      Generator bootowalnych dysków USB
3 Name:           makebootfat
4 Version:        1.4
5 Release:        1
6 License:        GPL v2
7 Group:          Applications/System
8 Source0:        https://downloads.sourceforge.net/advancemame/%{name}-%{version}.tar.gz
9 # Source0-md5:  8ae9144e2bec8b8498361a25fdf76741
10 URL:            http://www.advancemame.it/boot-readme.html
11 BuildRequires:  autoconf >= 2.57
12 BuildRequires:  automake
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 The bootable USB disk generator.
17
18 %description -l pl.UTF-8
19 Generator bootowalnych dysków USB.
20
21 %prep
22 %setup -q
23
24 %build
25 %{__aclocal}
26 %{__autoconf}
27 %{__autoheader}
28 %{__automake}
29 %configure
30 %{__make}
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
35
36 %{__make} install \
37         DESTDIR=$RPM_BUILD_ROOT
38
39 install mbrfat.bin $RPM_BUILD_ROOT%{_datadir}/%{name}
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %doc doc/{authors,history,readme}.html AUTHORS README HISTORY
47 %attr(755,root,root) %{_bindir}/makebootfat
48 %{_datadir}/%{name}
49 %{_mandir}/man1/makebootfat.1*
This page took 0.182239 seconds and 3 git commands to generate.