diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 21:06:58 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 21:06:58 -0500 |
commit | 4bf1ad1adcd707de7f0358d0f1242acf1d6134eb (patch) | |
tree | ff653e45ab4472a6f9d6c8c3dc536061c1b76818 /desktop/faenza-cupertino/faenza-cupertino.SlackBuild | |
parent | d93a43b7449558e2a29d9880709ac3d752635e60 (diff) |
desktop/faenza-cupertino: Removed (no maintainer)
Diffstat (limited to 'desktop/faenza-cupertino/faenza-cupertino.SlackBuild')
-rw-r--r-- | desktop/faenza-cupertino/faenza-cupertino.SlackBuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/desktop/faenza-cupertino/faenza-cupertino.SlackBuild b/desktop/faenza-cupertino/faenza-cupertino.SlackBuild deleted file mode 100644 index 29ffea78c56f6..0000000000000 --- a/desktop/faenza-cupertino/faenza-cupertino.SlackBuild +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/sh -# -# Slackware Package Build Script for faenza-cupertino. -# -# Copyright 2016-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil. -# All rights reserved. -# -# 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="faenza-cupertino" -VERSION=${VERSION:-2011.10.15} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -ARCH=noarch - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} -CWD=$(pwd) - -set -e - -SRCNAM="129008-Faenza-Cupertino" - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -mkdir $PRGNAM-$VERSION -tar xvf $CWD/$SRCNAM.tar.gz -C $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -chown -R root:root . - -chown -R root:root . -find . -type f -exec chmod 644 {} \; -find . -type d -exec chmod 755 {} \; - -mkdir -p $PKG/usr/share/icons - -cp -a Faenza-Cupertino $PKG/usr/share/icons - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $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} |