system/smem: Added to 12.2 repository

This commit is contained in:
Dušan Stefanović 2010-05-12 23:33:48 +02:00 committed by Heinz Wiesinger
parent faac87b4f4
commit 511306c975
4 changed files with 74 additions and 0 deletions

8
system/smem/README Normal file
View File

@ -0,0 +1,8 @@
smem memory reporting tool
smem is a tool that can give numerous reports on memory usage on Linux
systems. Unlike existing tools, smem can report proportional set size
(PSS), which is a more meaningful representation of the amount of
memory used by libraries and applications in a virtual memory system.
Optional dependency: matplotlib (for chart generation)

11
system/smem/slack-desc Normal file
View File

@ -0,0 +1,11 @@
|-----handy-ruler------------------------------------------------------|
smem: smem memory reporting tool
smem:
smem: smem is a tool that can give numerous reports on memory usage on
smem: Linux systems. Unlike existing tools, smem can report proportional
smem: set size (PSS), which is a more meaningful representation of the
smem: amount of memory used by libraries and applications in a virtual
smem: memory system.
smem:
smem: http://www.selenic.com/smem/
smem:

View File

@ -0,0 +1,47 @@
#!/bin/sh
# Slackware build script for smem
# Written by Dusan Stefanovic <stefanovic.dusan@gmail.com>
# Modified by SlackBuilds.org
PRGNAM=smem
VERSION=${VERSION:-0.1}
ARCH=${ARCH:-noarch}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
mkdir -p $PKG/usr/bin
install -m 755 smem $PKG/usr/bin
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp capture $PKG/usr/doc/$PRGNAM-$VERSION/
chmod 744 $PKG/usr/doc/$PRGNAM-$VERSION/capture
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

8
system/smem/smem.info Normal file
View File

@ -0,0 +1,8 @@
PRGNAM="smem"
VERSION="0.1"
HOMEPAGE="http://www.selenic.com/smem/"
DOWNLOAD="http://www.selenic.com/smem/download/smem-0.1.tar.gz"
MD5SUM="2d2a64fcf00e353efa3751c826f801ee"
MAINTAINER="Dusan Stefanovic"
EMAIL="stefanovic.dusan@gmail.com"
APPROVED="pprkut"