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