desktop/pypanel: Initial import
This commit is contained in:
parent
3d005a5358
commit
a28f7f6de1
|
@ -0,0 +1,7 @@
|
|||
PyPanel is a lightweight panel/taskbar written in Python and C for X11 window
|
||||
managers. It can be easily customized to match any desktop theme or taste. It
|
||||
works with WindowMaker and EWMH-compliant WMs (Kahakai, Openbox, FVWM, PekWM,
|
||||
etc).
|
||||
|
||||
Pypanel depends on python-xlib and imlib2, both available from slackbuilds.org
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for pypanel
|
||||
# Written by Vasilis Papavasileiou <el03020 at mail dot ntua dot gr>
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=pypanel
|
||||
VERSION=2.4
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
ORIG_PRGNAM=PyPanel
|
||||
DOCS="COPYING PKG-INFO README"
|
||||
PYTHON_VERSION=${PYTHON_VERSION:-2.4}
|
||||
|
||||
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 $ORIG_PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$ORIG_PRGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $ORIG_PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
python setup.py build || exit 1
|
||||
|
||||
python setup.py install --root $PKG || exit 1
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
# Remove docs from site-packages
|
||||
rm $PKG/usr/lib/python${PYTHON_VERSION}/site-packages/${PRGNAM}/{COPYING,README}
|
||||
|
||||
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="pypanel"
|
||||
VERSION="2.4"
|
||||
HOMEPAGE="http://pypanel.sourceforge.net"
|
||||
DOWNLOAD="http://switch.dl.sourceforge.net/sourceforge/pypanel/PyPanel-2.4.tar.gz"
|
||||
MD5SUM="f1f9a2ed80be72ab36e748833618daba"
|
||||
MAINTAINER="Vasilis Papavasileiou"
|
||||
EMAIL="el03020@mail.ntua.gr"
|
||||
APPROVED="rworkman"
|
|
@ -0,0 +1,11 @@
|
|||
pypanel: pypanel (A panel/taskbar for X11 window managers)
|
||||
pypanel:
|
||||
pypanel: PyPanel is a lightweight panel/taskbar written in Python and C for
|
||||
pypanel: X11 window managers. It can be easily customized to match any
|
||||
pypanel: desktop theme or taste. It works with WindowMaker and EWMH-compliant
|
||||
pypanel: WMs (Kahakai, Openbox, FVWM, PekWM, etc).
|
||||
pypanel:
|
||||
pypanel: Homepage: http://pypanel.sourceforge.net
|
||||
pypanel:
|
||||
pypanel:
|
||||
pypanel:
|
Loading…
Reference in New Issue