summaryrefslogtreecommitdiffstats
path: root/desktop/pypanel/pypanel.SlackBuild
blob: 3e7de35a3109f15c96dc7023f9087e25499a09a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/sh

# Slackware build script for pypanel
# Originally written by Vasilis Papavasileiou
# <el03020 at mail dot ntua dot gr>

# Modified by the SlackBuilds.org project
# and Chess Griffin <chess@chessgriffin.com>

PRGNAM=pypanel
VERSION=2.4
ARCH=i486	# See note below
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}

# Re ARCH, this will use whatever CFLAGS python was compiled with, so...
# Since this contains some C code, you will get an i486 package when
# building on official Slackware.   Adjust as appropriate.

CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

ORIG_PRGNAM=PyPanel
DOCS="COPYING PKG-INFO README pypanelrc"

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $ORIG_PRGNAM-$VERSION
tar xvf $CWD/$ORIG_PRGNAM-$VERSION.tar.gz
cd $ORIG_PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .

# Uncomment the patch line below if you want the STARTUP_DELAY
# variable.  This introduces a new configuration file variable called
# STARTUP_DELAY which will make pypanel load after an interval of
# time.  This is useful in case the window manager is slow to load up
# before pypanel starts.
#patch < $CWD/loaddelay.patch

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?.?/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