]> git.pld-linux.org Git - packages/game-music-emu.git/blame - game-music-emu.spec
- updated to 0.6.0
[packages/game-music-emu.git] / game-music-emu.spec
CommitLineData
d1302664
JB
1Summary: Collection of video game music file emulators
2Summary(pl.UTF-8): Zbiór emulatorów do odtwarzania muzyki z gier
3Name: game-music-emu
f7ef76be
JB
4Version: 0.6.0
5Release: 1
d1302664
JB
6License: LGPL v2.1+
7Group: Libraries
8#Source0Download: http://code.google.com/p/game-music-emu/downloads/list
f7ef76be
JB
9Source0: http://game-music-emu.googlecode.com/files/%{name}-%{version}.tar.bz2
10# Source0-md5: b98fafb737bc889dc65e7a8b94bd1bf5
d1302664
JB
11URL: http://code.google.com/p/game-music-emu/
12BuildRequires: cmake >= 2.6
13BuildRequires: libstdc++-devel
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
17Game_Music_Emu is a collection of video game music file emulators that
18support the following formats and systems:
19
20- AY - ZX Spectrum/Amstrad CPC
21- GBS - Nintendo Game Boy
22- GYM - Sega Genesis/Mega Drive
23- HES - NEC TurboGrafx-16/PC Engine
24- KSS - MSX Home Computer/other Z80 systems (doesn't support FM sound)
25- NSF/NSFE - Nintendo NES/Famicom (with VRC 6, Namco 106, and FME-7
26 sound)
27- SAP - Atari systems using POKEY sound chip
28- SPC - Super Nintendo/Super Famicom
29- VGM/VGZ - Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC
30 Micro
31
32%description -l pl.UTF-8
33Game_Music_Emu to zbiór emulatorów pozwalających na odtwarzanie plików
34muzycznych z gier. Obsługiwane formaty i systemy to:
35
36- AY - ZX Spectrum/Amstrad CPC
37- GBS - Nintendo Game Boy
38- GYM - Sega Genesis/Mega Drive
39- HES - NEC TurboGrafx-16/PC Engine
40- KSS - MSX Home Computer/inne systemy Z80 (bez obsługi dźwięku FM)
41- NSF/NSFE - Nintendo NES/Famicom (z dźwiękiem VRC 6, Namco 106 i
42 FME-7)
43- SAP - systemy Atari wykorzystujące układ dźwiękowy POKEY
44- SPC - Super Nintendo/Super Famicom
45- VGM/VGZ - Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC
46 Micro
47
48%package devel
49Summary: Header files for game-music-emu library
50Summary(pl.UTF-8): Pliki nagłówkowe biblioteki game-music-emu
51Group: Development/Libraries
52Requires: %{name} = %{version}-%{release}
53Requires: libstdc++-devel
54
55%description devel
56This package contains the header files for developing applications
57that use game-music-emu library.
58
59%description devel -l pl.UTF-8
60Ten pakiet zawiera pliki nagłówkowe do tworzenia aplikacji
61wykorzystujących bibliotekę game-music-emu.
62
63%prep
64%setup -q
65
66%build
67%cmake \
68 -DCMAKE_INSTALL_PREFIX=%{_prefix} \
69 -DLIB_INSTALL_DIR=%{_libdir} \
70%if "%{_lib}" == "lib64"
71 -DLIB_SUFFIX=64 \
72%endif
73 -DCMAKE_BUILD_TYPE=%{!?debug:Release}%{?debug:Debug} \
74 -DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
75 -DCMAKE_VERBOSE_MAKEFILE=ON
76
77%{__make}
78
79%install
80rm -rf $RPM_BUILD_ROOT
81
82%{__make} install \
83 DESTDIR=$RPM_BUILD_ROOT
84
85%clean
86rm -rf $RPM_BUILD_ROOT
87
88%post -p /sbin/ldconfig
89%postun -p /sbin/ldconfig
90
91%files
92%defattr(644,root,root,755)
93%doc changes.txt design.txt gme.txt readme.txt
94%attr(755,root,root) %{_libdir}/libgme.so.*.*.*
95%attr(755,root,root) %ghost %{_libdir}/libgme.so.0
96
97%files devel
98%defattr(644,root,root,755)
99%attr(755,root,root) %{_libdir}/libgme.so
100%{_includedir}/gme
f7ef76be 101%{_pkgconfigdir}/libgme.pc
This page took 0.094188 seconds and 4 git commands to generate.