add d/rope
This commit is contained in:
parent
71777fbb62
commit
68713a52a7
1 changed files with 72 additions and 0 deletions
72
d/rope/rope.SlackBuild
Executable file
72
d/rope/rope.SlackBuild
Executable file
|
@ -0,0 +1,72 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
# variables
|
||||
CWD=$(pwd)
|
||||
|
||||
APP_NAME=$(basename $CWD)
|
||||
VERSION=0.9.2
|
||||
ARCH=$(uname -m)
|
||||
BUILD=1
|
||||
PACKAGER=cyco
|
||||
|
||||
TMP=/tmp/$PACKAGER
|
||||
PKG=$TMP/pkg-$APP_NAME
|
||||
OUTPUT=/tmp
|
||||
|
||||
PREFIX=/usr
|
||||
DOCS="COPYING MANIFEST.in PKG-INFO README.txt"
|
||||
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG $TMP/$APP_NAME-$VERSION
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
( cd $TMP
|
||||
[ ! -e $CWD/$APP_NAME-$VERSION.tar.?z* ] && \
|
||||
wget -c http://downloads.sourceforge.net/project/$APP_NAME/$APP_NAME/$VERSION/$APP_NAME-$VERSION.tar.gz?use_mirror=jaist \
|
||||
-O $CWD/$APP_NAME-$VERSION.tar.gz
|
||||
tar xf $CWD/$APP_NAME-$VERSION.tar.?z*
|
||||
)
|
||||
|
||||
( cd $TMP/$APP_NAME-$VERSION
|
||||
# installation
|
||||
python setup.py install --root=$PKG
|
||||
)
|
||||
|
||||
# correction
|
||||
chown -R root:root $PKG/*
|
||||
|
||||
mkdir -p $PKG/usr/doc/$APP_NAME-$VERSION
|
||||
( cd $TMP/$APP_NAME-$VERSION
|
||||
cp -R $DOCS $PKG/usr/doc/$APP_NAME-$VERSION
|
||||
)
|
||||
|
||||
[ -d $PKG/usr/man ] && find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
|
||||
[ -d $PKG/usr/info ] && find $PKG/usr/info -type f -name "*.info*" -exec gzip -9f {} \;
|
||||
[ -d $PKG/usr/info ] && rm $PKG/usr/info/dir
|
||||
|
||||
# Strip binaries
|
||||
find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
# embaumement
|
||||
mkdir -p $PKG/install
|
||||
cat <<EOF > $PKG/install/slack-desc
|
||||
$APP_NAME: $APP_NAME (a python refactoring library...)
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME: http://rope.sourceforge.net/
|
||||
$APP_NAME:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
( cd $PKG
|
||||
makepkg -l y -c n $OUTPUT/$APP_NAME-$(echo $VERSION | tr -d -)-$ARCH-$BUILD$PACKAGER.txz
|
||||
)
|
Loading…
Add table
Reference in a new issue