65 lines
1.7 KiB
RPMSpec
65 lines
1.7 KiB
RPMSpec
Name: xdms
|
|
Version: 1.3.2
|
|
Release: 3%{?dist}
|
|
Summary: Extracts Amiga DMS archives
|
|
|
|
Group: Applications/Archiving
|
|
License: Public Domain
|
|
URL: http://zakalwe.fi/~shd/foss/%{name}
|
|
Source0: http://zakalwe.fi/~shd/foss/%{name}/%{name}-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
%description
|
|
Extracts Amiga DMS (Disk Masher) archives which are compressed Amiga disk
|
|
images. Xdms is particularly useful with Amiga emulators.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
# Non standard configure script that does not support libdir for example.
|
|
CFLAGS="%{optflags}" ./configure --prefix=%{_usr}
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
install -p -m0644 xdms.1 %{buildroot}%{_mandir}/man1
|
|
install -p -m0755 src/xdms %{buildroot}%{_bindir}
|
|
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/xdms
|
|
%{_mandir}/man1/xdms.1.*
|
|
%doc ChangeLog.txt %{name}.txt
|
|
|
|
|
|
%changelog
|
|
* Sat Nov 18 2006 Ian Chapman <packages@amiga-hardware.com> 1.3.2-3
|
|
- Minor spec cleanups
|
|
|
|
* Mon Nov 06 2006 Ian Chapman <packages@amiga-hardware.com> 1.3.2-2
|
|
- Possible migration to FE
|
|
|
|
* Mon Oct 23 2006 Ian Chapman <packages@amiga-hardware.com> 1.3.2-1
|
|
- Upgrade to 1.3.2
|
|
|
|
* Mon May 29 2006 Ian Chapman <packages@amiga-hardware.com> 1.3.1-3
|
|
- Replace %%{__rm} in clean section with rm
|
|
- Use rpmoptflags
|
|
|
|
* Mon May 01 2006 Ian Chapman <packages@amiga-hardware.com> 1.3.1-2.iss
|
|
- Altered spec file to follow Fedora style more closely
|
|
- Removed readdisk as this was actually an Amiga binary
|
|
|
|
* Sun Dec 18 2005 Ian Chapman <packages@amiga-hardware.com> 1.3.1-1.iss
|
|
- Initial Release
|