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

Revision 8430, 3.4 KB checked in by Takemikaduchi, 10 years ago (diff)

KDE-4.12.5

Line 
1Name: blinken
2Summary: KDE version of the Simon electronic memory game
3Version: 4.12.5
4Release: 1%{?_dist_release}
5
6License: GPLv2+
7Group: Applications/Edutainment
8URL: http://edu.kde.org/blinken/
9
10Source: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
11
12## upstream patches
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15BuildRequires: desktop-file-utils
16BuildRequires: kdelibs-devel >= %{version}
17
18Requires: kdebase-runtime%{?_kde4_version: >= %{_kde4_version}}
19
20Conflicts: kdeedu4 < 4.6.50
21
22Vendor: Project Vine
23Distribution: Vine Linux
24
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
94* Wed May 07 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.12.5-1
95- new upstream release
96
97* Sun Feb 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.12.2-1
98- new upstream release
99
100* Wed Dec 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.4-1
101- new upstream release
102
103* Sun Sep 08 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.1-1
104- new upstream release
105
106* Sat Jul 06 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.10.5-1
107- new upstream release
108
109* Fri Jan 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.5-1
110- new upstream release
111
112* Sat Nov 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.3-1
113- new upstream release
114
115* Sun Oct 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.2-1
116- new upstream release
117
118* Thu Sep 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.1-1
119- new upstream release
120
121* Mon Aug 13 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.0-1
122- new upstream release
123
124* Sat Sep  3 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.0-1
125- split from kdeedu
126
Note: See TracBrowser for help on using the repository browser.