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