diff options
Diffstat (limited to 'multimedia/flash-player-plugin/flash-player-plugin.SlackBuild')
-rw-r--r-- | multimedia/flash-player-plugin/flash-player-plugin.SlackBuild | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/multimedia/flash-player-plugin/flash-player-plugin.SlackBuild b/multimedia/flash-player-plugin/flash-player-plugin.SlackBuild index c8f78999f3..c67d15a577 100644 --- a/multimedia/flash-player-plugin/flash-player-plugin.SlackBuild +++ b/multimedia/flash-player-plugin/flash-player-plugin.SlackBuild @@ -1,31 +1,48 @@ #!/bin/sh -## Written by hollywoodb (hollywoodb@fastmail.fm) -# Modified by the SlackBuilds.org project -# Script maintained by Robby Workman <rworkman@slackbuilds.org> +# Copyright 2010 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.0_r45 +VERSION=10.2_d161 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -SRC_VERSION=10.0.45.2 +SRC_VERSION=091510 -# Automatically determine the architecture we're building on: case "$( uname -m )" in i?86) ARCH=i386 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac -# If you use or intend to use Opera at some point, and you want -# this plugin available to it, then pass "yes" as the value to this -# variable: USE_OPERA=yes ./flash-player-plugin.SlackBuild -# Note that this should *NOT* be needed if you installed Opera using -# the SlackBuilds.org build script, as we do a simple patch there to -# make it look in /usr/lib${LIBDIRSUFFIX}/mozilla/plugins -USE_OPERA=${USE_OPERA:-no} +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} @@ -38,16 +55,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -if [ "$ARCH" = "x86_64" ]; then - LIBDIRSUFFIX="64" - tar xvf $CWD/libflashplayer-${SRC_VERSION}.linux-x86_64.so.tar.gz -elif [ "$ARCH" = "i386" ]; then - LIBDIRSUFFIX="" - tar xvf $CWD/install_flash_player_10_linux.tar.gz -else - printf "\n\n$ARCH is unsupported...\n" - exit 1 -fi +tar xf $CWD/flashplayer_square_p1_${SRC_ARCH}_linux_${SRC_VERSION}.tar.gz # Check to make sure we're packaging the same version that this script # was written to handle: @@ -68,14 +76,6 @@ fi mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/mozilla/plugins install -m 0755 libflashplayer.so $PKG/usr/lib${LIBDIRSUFFIX}/mozilla/plugins -# If the user wants an opera plugin installed, then we'll do that too. -if [ ! "$USE_OPERA" = "no" ]; then - mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/opera/plugins - cd $PKG/usr/lib${LIBDIRSUFFIX}/opera/plugins - ln -s /usr/lib${LIBDIRSUFFIX}/mozilla/plugins/libflashplayer.so . - cd - -fi - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |