Created
September 12, 2012 07:51
-
-
Save anonymous/3705028 to your computer and use it in GitHub Desktop.
RPM spec file for SDL_mixer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%define name SDL_mixer | |
%define version 1.2.12 | |
%define release hy1 | |
Summary: Simple DirectMedia Layer - Sample Mixer Library | |
Name: %{name} | |
Version: %{version} | |
Release: %{release} | |
Source0: %{name}-%{version}.tar.gz | |
License: LGPL | |
Group: System Environment/Libraries | |
BuildRoot: /var/tmp/%{name}-buildroot | |
Prefix: %{_prefix} | |
Vendor: hylom | |
Packager: hylom <hylom@hylom.net> | |
%description | |
Due to popular demand, here is a simple multi-channel audio mixer. | |
It supports 4 channels of 16 bit stereo audio, plus a single channel | |
of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis, | |
Tremor, SMPEG MP3, and libmad MP3 libraries. | |
%package devel | |
Summary: Libraries, includes and more to develop SDL applications. | |
Group: Development/Libraries | |
Requires: %{name} | |
%description devel | |
Due to popular demand, here is a simple multi-channel audio mixer. | |
It supports 4 channels of 16 bit stereo audio, plus a single channel | |
of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis, | |
Tremor, SMPEG MP3, and libmad MP3 libraries. | |
%prep | |
%setup | |
%build | |
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} | |
%configure | |
make | |
%install | |
rm -rf %{buildroot} | |
make install DESTDIR=%{buildroot} | |
%clean | |
rm -rf $RPM_BUILD_ROOT | |
%files | |
%defattr(-,root,root) | |
%doc README CHANGES COPYING | |
%{_libdir}/lib*.so.* | |
%files devel | |
%defattr(-,root,root) | |
%{_libdir}/lib*.a | |
%{_libdir}/lib*.la | |
%{_libdir}/lib*.so | |
%{_includedir}/SDL/ | |
%{_libdir}/pkgconfig/*.pc | |
%changelog | |
* Wed Sep 12 2012 hylom | |
- fix problem to build x86_64 package | |
* Wed Jan 19 2000 Sam Lantinga | |
- converted to get package information from configure | |
* Sun Jan 16 2000 Hakan Tandogan <hakan@iconsult.com> | |
- initial spec file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment