2021-07-04 01:48:15 +08:00
|
|
|
#!/bin/bash
|
2013-07-06 14:22:06 +08:00
|
|
|
|
|
|
|
# Slackware build script for jalview
|
|
|
|
|
2021-05-18 21:26:38 +08:00
|
|
|
# Copyright 2013-2021 Petar Petrov slackalaxy@gmail.com
|
2013-07-06 14:22:06 +08:00
|
|
|
# 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.
|
|
|
|
|
2021-07-04 17:41:06 +08:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2013-11-22 15:34:22 +08:00
|
|
|
PRGNAM=jalview
|
2021-05-18 21:26:38 +08:00
|
|
|
VERSION=${VERSION:-2.11.1.4}
|
2016-11-28 00:21:43 +08:00
|
|
|
BUILD=${BUILD:-1}
|
2013-11-22 15:34:22 +08:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 18:23:38 +08:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2013-07-06 14:22:06 +08:00
|
|
|
|
|
|
|
ARCH=noarch
|
2020-09-15 09:35:34 +08:00
|
|
|
JAVA=j1.8
|
|
|
|
|
2013-07-06 14:22:06 +08:00
|
|
|
|
2021-07-04 18:23:38 +08:00
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
|
|
# the name of the created package would be, and then exit. This information
|
|
|
|
# could be useful to other scripts.
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2013-11-22 15:34:22 +08:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
2013-07-06 14:22:06 +08:00
|
|
|
PKG=$TMP/package-$PRGNAM
|
2013-11-22 15:34:22 +08:00
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
2013-07-06 14:22:06 +08:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
|
2020-09-15 09:35:34 +08:00
|
|
|
install -D -m755 $CWD/$PRGNAM-all-$VERSION-$JAVA.jar $PKG/opt/$PRGNAM/$PRGNAM
|
2013-07-06 14:22:06 +08:00
|
|
|
install -D -m755 $CWD/$PRGNAM $PKG/usr/bin/$PRGNAM
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cat $CWD/References > $PKG/usr/doc/$PRGNAM-$VERSION/References
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
# Menu item and icon
|
|
|
|
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
|
2021-07-04 18:23:38 +08:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|