package created using the webbuild interface [release 0.6.3-1mamba;Sat Jun 24 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 04:24:50 +01:00
parent ee43aef737
commit cab1ba3426
2 changed files with 68 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libgme # libgme
Video game music file emulation/playback library.

66
libgme.spec Normal file
View File

@ -0,0 +1,66 @@
Name: libgme
Version: 0.6.3
Release: 1mamba
Summary: Video game music file emulation/playback library
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://bitbucket.org/mpyne/game-music-emu
Source: https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-%{version}.tar.xz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
BuildRequires: libubsan-devel
BuildRequires: libz-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
%description
Video game music file emulation/playback library.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q -n game-music-emu-%{version}
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libgme.so.*
%doc license.txt license.gpl2.txt
%files devel
%defattr(-,root,root)
%dir %{_includedir}/gme
%{_includedir}/gme/*.h
%{_libdir}/libgme.so
%{_libdir}/pkgconfig/libgme.pc
%changelog
* Sat Jun 24 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.6.3-1mamba
- package created using the webbuild interface