]> git.pld-linux.org Git - packages/performous.git/blob - performous.spec
- release 2 (rebuild with libpng14).
[packages/performous.git] / performous.spec
1 Summary:        Performous - a free cross-platform singing game
2 Name:           performous
3 Version:        0.5.1
4 Release:        2
5 License:        GPL v2+
6 Group:          Applications
7 Source0:        http://dl.sourceforge.net/performous/Performous-%{version}-Source.tar.bz2
8 # Source0-md5:  3c86c4810111e1c45e7b8ab4aa321d7d
9 URL:            http://performous.org/
10 BuildRequires:  ImageMagick-c++-devel
11 BuildRequires:  SDL-devel
12 BuildRequires:  alsa-lib-devel
13 BuildRequires:  boost-devel
14 BuildRequires:  cmake
15 BuildRequires:  ffmpeg-devel
16 BuildRequires:  gettext-devel
17 BuildRequires:  glew-devel
18 BuildRequires:  glibmm-devel
19 BuildRequires:  help2man
20 BuildRequires:  jack-audio-connection-kit-devel
21 BuildRequires:  librsvg-devel
22 BuildRequires:  libsigc++-devel
23 BuildRequires:  libxml++-devel
24 BuildRequires:  pango-devel
25 BuildRequires:  pkgconfig
26 BuildRequires:  pulseaudio-devel
27 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29 %description
30 While Performous might be classified as a karaoke program, it is
31 actually much more than that. Instead of just displaying the lyrics,
32 notes are also displayed and the performance is scored based on how
33 well you actually hit the notes. Unlike in most other games in this
34 genre, you will also see the precise pitch that you are singing, so
35 that you can see what you are doing wrong and easily (well, everything
36 is relative) correct your pitch.
37
38 Most of the songs available also contain the original vocals and
39 actual karaoke versions are rare.
40
41 For those who sing rather than well, a karaoke mode is provided. In
42 this mode only lyrics are displayed and there are no notes or scoring.
43
44 %prep
45 %setup -qn Performous-%{version}-Source
46 %{__sed} -i 's:png12:png14:g' cmake/Modules/FindPng.cmake
47
48 %build
49 mkdir build
50 cd build
51 %cmake .. \
52         -DCMAKE_BUILD_TYPE=%{!?debug:Release}%{?debug:Debug} \
53         -DCMAKE_INSTALL_PREFIX=%{_prefix} \
54 %if "%{_lib}" == "lib64"
55         -DLIB_SUFFIX=64
56 %endif
57
58 %{__make}
59
60 %install
61 rm -rf $RPM_BUILD_ROOT
62
63 %{__make} -C build install \
64         DESTDIR=$RPM_BUILD_ROOT
65
66 %find_lang %{name} --all-name
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %files -f %{name}.lang
72 %defattr(644,root,root,755)
73 %doc docs/*.txt
74 %attr(755,root,root) %{_bindir}/*
75 %dir %{_libdir}/%{name}
76 %dir %{_libdir}/%{name}/libda-1
77 %attr(755,root,root) %{_libdir}/%{name}/libda-1/*.so
78 %{_datadir}/games/%{name}
79 %{_mandir}/man6/*
80 %{_pixmapsdir}/*
81 %{_desktopdir}/*
This page took 0.063261 seconds and 4 git commands to generate.