source: projects/specs/trunk/x/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-vl.spec @ 8073

Revision 8073, 1.8 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild

Line 
1Name:           xfce4-cpugraph-plugin
2Summary:        CPU Graph plugin for the Xfce4 panel
3Summary(ja):    Xfce パネル用 CPU グラフプラグイン
4Version:        1.0.2
5Release:        2%{?_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}/1.0/%{name}-%{version}.tar.bz2
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  libxfce4util-devel >= 4.8.0
16BuildRequires:  libxfce4ui-devel >= 4.8.0
17BuildRequires:  xfce4-panel-devel >= 4.8.0
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25This plugin displays an graph from your latest system load.
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%{_libdir}/xfce4/panel/plugins/libcpugraph.so
65%{_datadir}/icons/hicolor/*/apps/%{name}.*
66%{_datadir}/xfce4/panel/plugins/cpugraph.desktop
67
68%changelog
69* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-2
70- rebuild with VineSeed environment
71
72* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-1
73- initial build for Vine Linux
74
Note: See TracBrowser for help on using the repository browser.