source: projects/specs/trunk/x/xfce4-timer-plugin/xfce4-timer-plugin-vl.spec @ 6284

Revision 6284, 1.8 KB checked in by Takemikaduchi, 12 years ago (diff)

Xfce-4.10.0 + thunderbird-13.0

Line 
1Name:           xfce4-timer-plugin
2Summary:        Timer plugin for the Xfce4 panel
3Summary(ja):    Xfce パネル用 タイマプラグイン
4Version:        0.6.4
5Release:        1%{?_dist_release}
6
7Group:          User Interface/Desktops
8License:        GPLv2+
9URL:            http://goodies.xfce.org/projects/panel-plugins/%{name}
10
11Source0:        http://archive.xfce.org/src/panel-plugins/%{name}/0.6/%{name}-%{version}.tar.bz2
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  libxfce4util-devel >= 4.3.0
16BuildRequires:  libxfcegui4-devel >= 4.2.0
17BuildRequires:  xfce4-panel-devel >= 4.8.0
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25This is a simple plugin that lets the user run an alarm at a specified time or at the end of a specified countdown period.
26
27%description -l ja
28ユーザーが指定した時刻または指定された指定したカウントダウン時間の終わりにアラームを鳴らすためのシンプルなプラグインです。
29
30%prep
31%setup -q
32
33%build
34%configure --disable-static
35make %{?_smp_mflags}
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make install DESTDIR=$RPM_BUILD_ROOT
40
41find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
42
43%find_lang %{name}
44
45
46%clean
47rm -rf $RPM_BUILD_ROOT
48
49
50%post
51touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
52gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
53
54%postun
55if [ $1 -eq 0 ]; then
56    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
57    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
58fi
59
60
61%files -f %{name}.lang
62%defattr(-,root,root)
63%doc AUTHORS COPYING ChangeLog NEWS README
64%{_libexecdir}/xfce4/panel-plugins/xfce4-timer
65%{_datadir}/icons/hicolor/*/apps/*
66%{_datadir}/xfce4/panel-plugins/xfce4-timer.desktop
67
68%changelog
69* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.4-1
70- initial build for Vine Linux
71
Note: See TracBrowser for help on using the repository browser.