#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://thecoccinella.org # Packager Andrea Sciucca Gohanz ( gohanz at infinito.it) # http://www.slacky.it # # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} PKG=$TMP/package/Coccinella NAME=Coccinella VERSION=0.96.12 ARCH=${ARCH:-x86} BUILD=1as SOURCE=http://garr.dl.sourceforge.net/sourceforge/coccinella/$NAME-$VERSION'Linux-x86'.tar.gz if [ ! -e $NAME-$VERSION'Linux-x86'.tar.gz ]; then wget -c $SOURCE fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvzf $CWD/$NAME-$VERSION'Linux-x86'.tar.gz echo -e "\E[0;32m+-----------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild Coccinella |\E[0;0m" echo -e "\E[0;32m+-----------------------------+\E[0;0m" cd $NAME-$VERSION'Linux-x86' find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; chown -R root:root . mkdir -p $PKG/usr/bin cat << EOF > $PKG/usr/bin/coccinella #!/bin/bash cd /usr/share/Coccinella exec /usr/share/Coccinella/coccinella EOF chmod 755 $PKG/usr/bin/* mkdir -p $PKG/usr/share/Coccinella install -m 755 Coccinella-$VERSION.bin* $PKG/usr/share/Coccinella/coccinella mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -ar *.txt READMEs $PKG/usr/doc/$NAME-$VERSION mkdir -p $PKG/usr/share/applications cat << EOF > $PKG/usr/share/applications/coccinella.desktop [Desktop Entry] Encoding=UTF-8 Name=Coccinella Comment=Jabber client with a whiteboard Exec=coccinella Icon=coccinella Terminal=false Type=Application Categories=Application;Network; EOF mkdir -p $PKG/usr/share/pixmaps cp -a $CWD/coccinella.xpm $PKG/usr/share/pixmaps mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild cd $PKG requiredbuilder -y -v -s $CWD $PKG makepkg -l y -c n $CWD/coccinella-$VERSION-$ARCH-$BUILD.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi