File makebootfat.spec of Package makebootfat
#
# spec file for package makebootfat (Version 1.4)
#
# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://www.suse.de/feedback/
#
# norootforbuild
Name: makebootfat
BuildRequires: nasm
URL: http://advancemame.sourceforge.net
License: GPL
Group: System/Boot
Autoreqprov: on
Summary: Create bootable FAT filesystems
Version: 1.4
Release: 3
Source: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Create bootable FAT filesystems, mainly for USB disks.
Authors:
--------
Andrea Mazzoleni <amadvance@users.sourceforge.net>
%prep
%setup
rm -f mbrfat.bin
%build
./configure --prefix=%{_prefix} --mandir=%{_mandir}
make mbrfat.bin
make
%install
make DESTDIR=%{buildroot} install
mkdir -p %{buildroot}/%{_prefix}/lib/makebootfat
install -m 644 mbrfat.bin %{buildroot}/%{_prefix}/lib/makebootfat
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%{_prefix}/bin/makebootfat
%{_prefix}/lib/makebootfat
%{_mandir}/man1/makebootfat.1.gz
%doc README COPYING HISTORY
%changelog -n makebootfat
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Thu Jul 28 2005 - snwint@suse.de
- file list fixed
* Tue Jul 26 2005 - snwint@suse.de
- moved mbrfat.bin into separate directory
* Mon Jul 25 2005 - snwint@suse.de
- initial version