diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-15 23:46:01 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 19:57:23 -0500 |
commit | aad5fec9cbf6b1e771e641529e4abfceff974357 (patch) | |
tree | 436c09d14a09b14dc4a24440d7f930760d598591 /network/emesene/emesene.SlackBuild | |
parent | 33ed5114b7d5d77b0af5c9127df518130ec9dbcb (diff) |
network/emesene: Removed (No maintainer).
Diffstat (limited to 'network/emesene/emesene.SlackBuild')
-rw-r--r-- | network/emesene/emesene.SlackBuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/network/emesene/emesene.SlackBuild b/network/emesene/emesene.SlackBuild deleted file mode 100644 index f91ee3449f198..0000000000000 --- a/network/emesene/emesene.SlackBuild +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -# Slackware build script for emesene - -# Written by Giovanne Castro <giovannefc@ig.com.br> - -PRGNAM=emesene -VERSION=${VERSION:-1.6.3} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -# No flags/configure needed because it is writen in python programing language. -ARCH=noarch - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Create link to executable program -mkdir -p $PKG/usr/bin -ln -sf /usr/share/emesene-$VERSION/emesene $PKG/usr/bin - -# Copy libraries program -mkdir -p $PKG/usr/share/emesene-$VERSION -cp -a *.py \ - emesene emesene.pot MANIFEST.in hotmlog.htm \ - abstract conversation_themes docs emesenelib libmimic misc \ - plugins_base po pygif pyisf smilies sound_themes themes \ - $PKG/usr/share/emesene-$VERSION - -# Install icon on correct places -mkdir -p $PKG/usr/share/applications -cat $CWD/emesene.desktop > $PKG/usr/share/applications/emesene.desktop -mkdir -p $PKG/usr/share/pixmaps -cat emesene-logo.png > $PKG/usr/share/pixmaps/emesene-logo.png - -# Copy documentation -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - COPYING GPL LGPL PSF README \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |