system/conky: Initial import
This commit is contained in:
parent
f20809db3f
commit
610f908cb7
|
@ -0,0 +1,8 @@
|
|||
conky - A light-weight system monitor for X
|
||||
|
||||
Conky is a system monitor for X originally based on the torsmo code.
|
||||
Since it's original conception, Conky has changed a fair bit from
|
||||
it'spredecessor. Conky can display just about anything, either on
|
||||
your root desktop or in it's own window. Conky has many built-in
|
||||
objects, as well as the ability to execute programs and scripts, then
|
||||
display the output from stdout.
|
|
@ -0,0 +1,58 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for conky
|
||||
# Written by eroc <eroc@linuxmail.org>
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=conky
|
||||
VERSION=1.4.5
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar jxvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+rw,go-w .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
if [ -d $PKG/usr/man ]; then
|
||||
gzip -9 $PKG/usr/man/man?/*
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS ChangeLog COPYING INSTALL NEWS README TODO doc/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rm $PKG/usr/doc/$PRGNAM-$VERSION/{Makefile,Makefile.am,Makefile.in,conky.1}
|
||||
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
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="conky"
|
||||
VERSION="1.4.5"
|
||||
HOMEPAGE="http://conky.sourceforge.net"
|
||||
DOWNLOAD="http://umn.dl.sourceforge.net/sourceforge/conky/conky-1.4.5.tar.bz2"
|
||||
MD5SUM="4625c052852f2919a5e7ce2eb7c31189"
|
||||
MAINTAINER="eroc"
|
||||
EMAIL="eroc@linuxmail.org"
|
||||
APPROVED="Alan_Hicks"
|
|
@ -0,0 +1,11 @@
|
|||
conky: conky - A light-weight system monitor for X
|
||||
conky:
|
||||
conky: Conky is a system monitor for X originally based on the torsmo code.
|
||||
conky: Since it's original conception, Conky has changed a fair bit from
|
||||
conky: it'spredecessor. Conky can display just about anything, either on
|
||||
conky: your root desktop or in it's own window. Conky has many built-in
|
||||
conky: objects, as well as the ability to execute programs and scripts, then
|
||||
conky: display the output from stdout.
|
||||
conky:
|
||||
conky:
|
||||
conky:
|
Loading…
Reference in New Issue