slackbuilds_ponce/multimedia/flash-player-plugin/flash-player-plugin.SlackBuild
Robby Workman 9edec91016 multimedia/flash-player-plugin: Updated for version 10.3_r181.
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2011-06-19 23:17:18 -05:00

86 lines
2.7 KiB
Bash

#!/bin/sh
# Copyright 2010,2011 Robby Workman, Northport, Alabama, USA
# 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=flash-player-plugin
VERSION=10.3_r181
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
case "$( uname -m )" in
i?86) ARCH=i386 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
if [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
SRC_ARCH=64bit
elif [ "$ARCH" = "i386" ]; then
LIBDIRSUFFIX=""
SRC_ARCH=32bit
else
printf "\n\n$ARCH is unsupported...\n"
exit 1
fi
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
if [ "$SRC_ARCH" = "32bit" ];then
tar xf $CWD/install_flash_player_10_linux.tar.gz -C $PKG
mv $PKG/libflashplayer.so $TMP
find $PKG -type d -exec chmod 0755 {} \;
find $PKG/usr/lib -type f -name "*.so" -exec chmod 0755 {} \;
find $PKG/usr/bin -type f -exec chmod 0755 {} \;
find $PKG/usr/share -type f -exec chmod 0644 {} \;
elif [ "$SRC_ARCH" = "64bit" ]; then
tar xf $CWD/flashplayer10_2_p3_64bit_linux_111710.tar.gz
fi
# Adobe's versioning scheme is maddening...
REALVERS=$(strings libflashplayer.so | grep -e "^Shockwave Flash [.\d+]*" | sed -e "s/Shockwave Flash //g")
VERSION=$(echo "$REALVERS" | tr ' ' _)
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/mozilla/plugins
install -m 0755 libflashplayer.so $PKG/usr/lib${LIBDIRSUFFIX}/mozilla/plugins
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
if [ "$SRC_ARCH" = "32bit" ];then
cat $CWD/doinst.sh > $PKG/install/doinst.sh
fi
cd $PKG
chown -R root:root .
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}