diff options
author | Petar Petrov <slackalaxy@gmail.com> | 2017-04-16 21:17:41 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-22 08:10:38 +0700 |
commit | d0084411ce47e94fdca9f38fad163d4018f98553 (patch) | |
tree | 7b50eb831f9c059645affde73e14bc71734a56ba /academic/archeopteryx/archeopteryx.SlackBuild | |
parent | f4dd64cc87b483d42cf00bdd8eba8bdb9081e264 (diff) |
academic/archeopteryx: Removed (renamed to archaeopteryx).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'academic/archeopteryx/archeopteryx.SlackBuild')
-rw-r--r-- | academic/archeopteryx/archeopteryx.SlackBuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/academic/archeopteryx/archeopteryx.SlackBuild b/academic/archeopteryx/archeopteryx.SlackBuild deleted file mode 100644 index 3f767ddbdc2c..000000000000 --- a/academic/archeopteryx/archeopteryx.SlackBuild +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh - -# Slackware build script for archeopteryx - -# Copyright 2014-2016 Petar Petrov slackalaxy@gmail.com -# 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=archeopteryx -VERSION=${VERSION:-1045} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=forester -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 -cd $TMP - -install -D -m755 $CWD/${SRCNAM}_${VERSION}.jar $PKG/usr/bin/$PRGNAM.jar - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# Include the example configuration file in the package. Copy it in your $HOME. -mkdir -p $PKG/usr/share/$PRGNAM -cp $CWD/_aptx_configuration_file.txt $PKG/usr/share/$PRGNAM - -# I did not find an icon, so I quickly modified some picture of an archeopteryx... -mkdir -p $PKG/usr/share/{applications,pixmaps} -cp $CWD/$PRGNAM.desktop $PKG/usr/share/applications -cp $CWD/$PRGNAM.png $PKG/usr/share/pixmaps - -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} |