mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
desktop/wmfire: Updated for version 1.2.4.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
86cec3241d
commit
ae68c92cbd
3 changed files with 12 additions and 15 deletions
|
@ -5,7 +5,7 @@
|
|||
# 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: It can monitor the average cpu load, or individual cpu load on SMP
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue