123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- Name: xfce4-cpufreq-plugin
- Summary: CPU monitor plugin for the Xfce panel
- Summary(ja): Xfce パネル用 CPU モニタプラグイン
- Version: 1.0.0
- Release: 1%{?_dist_release}
- Group: User Interface/Desktops
- License: GPLv2+
- URL: http://goodies.xfce.org/projects/panel-plugins/%{name}
- Source0: http://archive.xfce.org/src/panel-plugins/%{name}/1.0/%{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: libxfce4util-devel >= 4.3.90
- BuildRequires: libxfce4ui-devel >= 4.3.90
- BuildRequires: libxfcegui4-devel >= 4.3.90
- BuildRequires: xfce4-panel-devel >= 4.3.90
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- xfce4-cpufreq-plugin is a Plugin for the Xfce Panel, which
- shows CPU Informations
- %description -l ja
- xfce4-cpufreq は Xfce パネル用の CPU 情報を見るためのプラグインです。
- %prep
- %setup -q
- %build
- %configure --disable-static
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %find_lang %{name}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- %postun
- if [ $1 -eq 0 ]; then
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- fi
- %files -f %{name}.lang
- %defattr(-,root,root)
- %doc AUTHORS COPYING ChangeLog NEWS README
- %{_libexecdir}/xfce4/panel-plugins/xfce4-cpufreq-plugin
- %{_datadir}/icons/hicolor/*/apps/%{name}.*
- %{_datadir}/xfce4/panel-plugins/%{name}.desktop
- %changelog
- * Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.0-1
- - initial build for Vine Linux
|