source: projects/specs/trunk/b/blinken/blinken-vl.spec @ 8252

Revision 8252, 3.3 KB checked in by Takemikaduchi, 10 years ago (diff)

KDE-4.12.2

RevLine 
[4743]1Name: blinken
2Summary: KDE version of the Simon electronic memory game
[8252]3Version: 4.12.2
[4743]4Release: 1%{?_dist_release}
5
6License: GPLv2+
7Group: Applications/Edutainment
8URL: http://edu.kde.org/blinken/
9
[6725]10Source: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
[4743]11
12## upstream patches
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15BuildRequires: desktop-file-utils
[8252]16BuildRequires: kdelibs-devel >= %{version}
[4743]17
18Requires: kdebase-runtime%{?_kde4_version: >= %{_kde4_version}}
19
20Conflicts: kdeedu4 < 4.6.50
21
[8252]22Vendor: Project Vine
23Distribution: Vine Linux
24
[4743]25%description
26Blinken is based on an electronic game released in 1978, which
27challenges players to remember sequences of increasing length.
28On the face of the device, there are 4 different color buttons,
29each with its own distinctive sound. These buttons light up randomly,
30creating the sequence that the player must then recall. If the
31player is successful in remembering the sequence of lights in
32the correct order, they advance to the next stage, where an identical
33sequence with one extra step is presented.
34
35This package is part of the KDE education module.
36
37%prep
38%setup -q
39
40%build
41mkdir -p %{_target_platform}
42pushd %{_target_platform}
43%cmake \
44    -DCMAKE_BUILD_TYPE=release \
45    -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
46    -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
47    -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
48    -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
49    -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
50    ..
51popd
52
53make %{?_smp_mflags} -C %{_target_platform}
54
55%install
56rm -rf $RPM_BUILD_ROOT
57make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
58
59
60%clean
61rm -rf $RPM_BUILD_ROOT
62
63%check
64for f in $RPM_BUILD_ROOT%{_datadir}/applications/kde4/*.desktop ; do
65    desktop-file-validate $f
66done
67
68
69%post
70touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
71
72%posttrans
73update-desktop-database -q &> /dev/null ||:
74gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
75
76%postun
77if [ $1 -eq 0 ] ; then
78    update-desktop-database -q &> /dev/null ||:
79    touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
80    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
81fi
82
83%files
84%defattr(-,root,root)
85%doc COPYING COPYING.DOC
86%{_bindir}/blinken
87%{_datadir}/applications/kde4/blinken.desktop
88%{_datadir}/config.kcfg/blinken.kcfg
89%{_datadir}/icons/hicolor/*/*/*
90%{_datadir}/kde4/apps/blinken
91%doc %{_docdir}/HTML/en/blinken/
92
93%changelog
[8252]94* Sun Feb 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.12.2-1
95- new upstream release
96
[8056]97* Wed Dec 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.4-1
98- new upstream release
99
[7801]100* Sun Sep 08 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.1-1
101- new upstream release
102
[7728]103* Sat Jul 06 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.10.5-1
104- new upstream release
105
[7294]106* Fri Jan 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.5-1
107- new upstream release
108
[7105]109* Sat Nov 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.3-1
110- new upstream release
111
[6899]112* Sun Oct 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.2-1
113- new upstream release
114
[6797]115* Thu Sep 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.1-1
116- new upstream release
117
[6725]118* Mon Aug 13 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.0-1
119- new upstream release
120
[4743]121* Sat Sep  3 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.0-1
122- split from kdeedu
123
Note: See TracBrowser for help on using the repository browser.