I am trying to make an rpm of the updated 1.51-54 snes9x with the GTK interface. Here is the error I get when I try to build it:
Code:
(./configure seem to work and then get into make).............................
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Checking for unpackaged file(s): /usr/lib/rpm/check-files /var/tmp/snes9x-1.51-54-root-Juan
error: Installed (but unpackaged) file(s) found:
/bin/snes9x-gtk
/share/applications/snes9x.desktop
/share/pixmaps/snes9x.svg
RPM build errors:
Installed (but unpackaged) file(s) found:
/bin/snes9x-gtk
/share/applications/snes9x.desktop
/share/pixmaps/snes9x.svg
[Juan@localhost SPECS]$
If it helps I have already compiled it on my computer with success. I am also using Fedora 9.
I am still trying to learn and work this out. Here is the spec file:
Code:
Summary: Portable, freeware Super Nintendo Entertainment System (TM) emulator
Name: snes9x
Version: 1.51
Release: 54
License: Other
Group: Applications/Emulators
URL: http://www.snes9x.com/
Source: http://bearoso.googlepages.com/snes9x-1.51-src-gtk-54.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: portaudio, portaudio-devel
BuildRequires: gtkglext, gtkglext-devel
BuildRequires: nasm
%description
Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES)
emulator. It basically allows you to play most games designed for the SNES
and Super Famicom Nintendo game systems on your computer. (This is the
build with the GTK interface)
%prep
%setup -n %{name}-%{version}-src
%build
%configure --prefix=/usr --with-netplay --with-opengl --with-gtk
make %{?_smp_mflags}
make clean
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%changelog
Some help to a noob would be greatly appreciated. Thanks.