diff options
author | Stu Miller <slackbuilds@go4it2day.com> | 2010-10-10 18:51:53 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-10-10 18:51:53 -0500 |
commit | 7e4d30c2d5d9ffda2b18761caca0042ff28350c9 (patch) | |
tree | 0dea9bcf45d426668cfa2fb5a641b805745a9e7b /desktop/rootactions_servicemenu/rootactions_servicemenu.SlackBuild | |
parent | 602d2eb9eed94819b5cf4480ef403639afe028f5 (diff) | |
download | slackbuilds-7e4d30c2d5d9ffda2b18761caca0042ff28350c9.tar.gz |
desktop/rootactions_servicemenu: Added (RunAsRoot KDE menu addons)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/rootactions_servicemenu/rootactions_servicemenu.SlackBuild')
-rw-r--r-- | desktop/rootactions_servicemenu/rootactions_servicemenu.SlackBuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/desktop/rootactions_servicemenu/rootactions_servicemenu.SlackBuild b/desktop/rootactions_servicemenu/rootactions_servicemenu.SlackBuild new file mode 100644 index 0000000000..bfd1f3af7b --- /dev/null +++ b/desktop/rootactions_servicemenu/rootactions_servicemenu.SlackBuild @@ -0,0 +1,67 @@ +#!/bin/sh + +# Slackware build script for Root Actions Servicemenu + +# Written by Stu Miller <slackbuilds@go4it2day.com> +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=rootactions_servicemenu +VERSION=${VERSION:-2.5.92} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +rm -rf $TMP/${PRGNAM}_${VERSION} +cd $TMP +tar xvf $CWD/48411-${PRGNAM}_${VERSION}.tar.gz +cd ${PRGNAM}_${VERSION} +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +mkdir -p $PKG/usr/bin +cp -a \ + Root_Actions_$VERSION/rootactions-servicemenu.pl \ + $PKG/usr/bin + +mkdir -p $PKG/usr/share/kde4/services/ServiceMenus +cp -a \ + Root_Actions_$VERSION/dolphin-KDE4/10-rootactionsfolders.desktop \ + Root_Actions_$VERSION/dolphin-KDE4/11-rootactionsfiles.desktop \ + $PKG/usr/share/kde4/services/ServiceMenus + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a changelog GPL-2 README $PKG/usr/doc/$PRGNAM-$VERSION +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.${PKGTYPE:-tgz} |