From 9addf804ec58a19bddd94ea56fcadba52a409004 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 06:54:19 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.151-1mamba;Sun Dec 29 2013] --- README.md | 2 ++ mame.spec | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 mame.spec diff --git a/README.md b/README.md index 3edefb3..d68a594 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # mame +MAME stands for "Multiple Arcade Machine Emulator". It provides a virtual environment where you can run software written for other platforms, namely old arcades. + diff --git a/mame.spec b/mame.spec new file mode 100644 index 0000000..39ab353 --- /dev/null +++ b/mame.spec @@ -0,0 +1,55 @@ +Name: mame +Version: 0.151 +Release: 1mamba +Summary: A virtual environment where you can run software written for other platforms, namely old arcades +Group: Applications/Emulators +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sdlmame.wallyweek.org/ +Source: https://launchpad.net/~c.falco/+archive/mame/+files/mame_%{version}.orig.tar.xz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libSDL-devel +BuildRequires: libSDL_ttf-devel +BuildRequires: libX11-devel +BuildRequires: libXinerama-devel +BuildRequires: libalsa-devel +BuildRequires: libfontconfig-devel +BuildRequires: libfreetype-devel +BuildRequires: libgcc +BuildRequires: libqt4-devel +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +MAME stands for "Multiple Arcade Machine Emulator". It provides a virtual environment where you can run software written for other platforms, namely old arcades. + +%debug_package + +%prep +%setup -q -D -T + +%build +:<< _EOF +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -D -m0755 mame %{buildroot}%{_bindir}/mame +ln -s mame %{buildroot}%{_bindir}/sdlmame + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/mame +%{_bindir}/sdlmame +%doc docs/license.txt docs/licenseinfo.txt + +%changelog +* Sun Dec 29 2013 Silvan Calarco 0.151-1mamba +- package created using the webbuild interface