diff options
author | Richard Ellis <rellis@dp100.com> | 2011-12-10 18:53:27 -0200 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-12-10 18:53:27 -0200 |
commit | ae68c92cbd4212d7f2189e94fe92c3e6a2393ad7 (patch) | |
tree | 9433c4a28ab41f5137608359f13d97f1dd002586 | |
parent | 86cec3241d4426b96b92cd475d92c4d18800d957 (diff) | |
download | slackbuilds-ae68c92cbd4212d7f2189e94fe92c3e6a2393ad7.tar.gz |
desktop/wmfire: Updated for version 1.2.4.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
-rw-r--r-- | desktop/wmfire/slack-desc | 6 | ||||
-rw-r--r-- | desktop/wmfire/wmfire.SlackBuild | 13 | ||||
-rw-r--r-- | desktop/wmfire/wmfire.info | 8 |
3 files changed, 12 insertions, 15 deletions
diff --git a/desktop/wmfire/slack-desc b/desktop/wmfire/slack-desc index d796f8005e..82f4c8229d 100644 --- a/desktop/wmfire/slack-desc +++ b/desktop/wmfire/slack-desc @@ -5,15 +5,15 @@ # exactly 11 lines for the formatting to be correct. It's also customary to # leave one space after the ':'. - |-----handy-ruler-------------------------------------------------------| + |-----handy-ruler------------------------------------------------------| wmfire: wmfire (system load monitor) -wmfire: +wmfire: wmfire: It can monitor the average cpu load, or individual cpu load on SMP wmfire: computers. Additionally it can monitor the memory, network load, a wmfire: file or just be set to show a pretty flame. On entering the dock a wmfire: burning spot replaces the cursor, and after two seconds symbols to wmfire: represent the current monitor are "burnt" onscreen. The flame colour wmfire: can also be changed. -wmfire: +wmfire: wmfire: See http://www.swanson.ukfsn.org/ wmfire: diff --git a/desktop/wmfire/wmfire.SlackBuild b/desktop/wmfire/wmfire.SlackBuild index 74d33e0492..1bfa9ea2da 100644 --- a/desktop/wmfire/wmfire.SlackBuild +++ b/desktop/wmfire/wmfire.SlackBuild @@ -5,18 +5,17 @@ # Written by Richard Ellis (rellis@dp100.com) # Released into the public domain on June 6, 2009 +# V2 for Slackware 13.37 - November 11, 2011 PRGNAM=wmfire -VERSION=${VERSION:-1.2.3} +VERSION=${VERSION:-1.2.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -68,13 +67,11 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ diff --git a/desktop/wmfire/wmfire.info b/desktop/wmfire/wmfire.info index c70d513763..033747a08d 100644 --- a/desktop/wmfire/wmfire.info +++ b/desktop/wmfire/wmfire.info @@ -1,10 +1,10 @@ PRGNAM="wmfire" -VERSION="1.2.3" +VERSION="1.2.4" HOMEPAGE="http://www.swanson.ukfsn.org/" -DOWNLOAD="http://www.swanson.ukfsn.org/wmfire/wmfire-1.2.3.tar.gz" -MD5SUM="e4bc647777f2181cf1b8e78bcc0850ee" +DOWNLOAD="http://www.swanson.ukfsn.org/wmfire/wmfire-1.2.4.tar.gz" +MD5SUM="e0f298a542ce784806d3e8d1f555e51b" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Richard Ellis" EMAIL="rellis@dp100.com" -APPROVED="dsomero" +APPROVED="Niels Horn" |