From 511306c9752bd8a43481e8cc9399c38899fc9006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Stefanovi=C4=87?= Date: Wed, 12 May 2010 23:33:48 +0200 Subject: system/smem: Added to 12.2 repository --- system/smem/README | 8 ++++++++ system/smem/slack-desc | 11 +++++++++++ system/smem/smem.SlackBuild | 47 +++++++++++++++++++++++++++++++++++++++++++++ system/smem/smem.info | 8 ++++++++ 4 files changed, 74 insertions(+) create mode 100644 system/smem/README create mode 100644 system/smem/slack-desc create mode 100644 system/smem/smem.SlackBuild create mode 100644 system/smem/smem.info (limited to 'system/smem') diff --git a/system/smem/README b/system/smem/README new file mode 100644 index 0000000000..0fbcf46690 --- /dev/null +++ b/system/smem/README @@ -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) diff --git a/system/smem/slack-desc b/system/smem/slack-desc new file mode 100644 index 0000000000..b8e7c82cc1 --- /dev/null +++ b/system/smem/slack-desc @@ -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: diff --git a/system/smem/smem.SlackBuild b/system/smem/smem.SlackBuild new file mode 100644 index 0000000000..b69ca95eac --- /dev/null +++ b/system/smem/smem.SlackBuild @@ -0,0 +1,47 @@ +#!/bin/sh + +# Slackware build script for smem + +# Written by Dusan Stefanovic + +# 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 diff --git a/system/smem/smem.info b/system/smem/smem.info new file mode 100644 index 0000000000..d2cb959056 --- /dev/null +++ b/system/smem/smem.info @@ -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" -- cgit v1.2.3