26 lines
726 B
Plaintext
26 lines
726 B
Plaintext
# Description: CPU frequency plugin for the xfce panel.
|
|
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: xfce4-panel libxfcegui4
|
|
# Group: xfce4
|
|
|
|
name=xfce4-cpufreq-plugin
|
|
version=1.1.0
|
|
release=1
|
|
source=(http://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd xfce4-cpufreq-plugin-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
find $PKG/usr/share/xfce4/panel/plugins -type f -name '*.desktop' \
|
|
-exec sed -r '/\[.+\]=/d' -i {} \;
|
|
}
|