mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
multimedia/flash-player-plugin: Initial import
This commit is contained in:
parent
74fc0bef0c
commit
140e738ea7
4 changed files with 75 additions and 0 deletions
10
multimedia/flash-player-plugin/README
Normal file
10
multimedia/flash-player-plugin/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
flash-player-plugin (flash plugin for web browsers)
|
||||
|
||||
Provides Adobe Flash plugin for browsers that recognize
|
||||
/usr/lib/mozilla/plugins as a valid plugin directory.
|
||||
|
||||
Plugin is subject to Adobe terms of use:
|
||||
http://www.adobe.com/go/labs_term_of_use
|
||||
Plugin is subject to Adobe Flash EULA:
|
||||
http://labs.adobe.com/technologies/eula/flashplayer.html
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
#!/bin/sh
|
||||
|
||||
## Written by hollywoodb (hollywoodb@fastmail.fm)
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
## Verify script is being run by root user.
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
echo "This script must be run as root!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=flash-player-plugin
|
||||
VERSION=9.0.31.0
|
||||
ARCH=${ARCH:-i386}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
tar -xvzf $CWD/install_flash_player_9_linux.tar.gz
|
||||
cd install_flash_player_9_linux
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# This is repackaging of a binary plugin - no SLKCFLAGS required,
|
||||
# nor does anything need to be compiled
|
||||
mkdir -p $PKG/usr/lib/mozilla/plugins
|
||||
install -m 0755 libflashplayer.so $PKG/usr/lib/mozilla/plugins
|
||||
install -m 0644 flashplayer.xpt $PKG/usr/lib/mozilla/plugins
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
install -m 0644 Readme.txt $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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
multimedia/flash-player-plugin/flash-player-plugin.info
Normal file
8
multimedia/flash-player-plugin/flash-player-plugin.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="flash-player-plugin"
|
||||
VERSION="9.0.31.0"
|
||||
HOMEPAGE="http://www.adobe.com/"
|
||||
DOWNLOAD="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz"
|
||||
MD5SUM="76b38231a68995935185aa42dfda9db7"
|
||||
MAINTAINER="hollywoodb"
|
||||
EMAIL="hollywoodb@fastmail.fm"
|
||||
APPROVED="robw810,BP{k}"
|
10
multimedia/flash-player-plugin/slack-desc
Normal file
10
multimedia/flash-player-plugin/slack-desc
Normal file
|
@ -0,0 +1,10 @@
|
|||
flash-player-plugin: flash-player-plugin (flash plugin for web browsers)
|
||||
flash-player-plugin:
|
||||
flash-player-plugin: Provides Adobe Flash plugin for browsers that recognize
|
||||
flash-player-plugin: /usr/lib/mozilla/plugins as a valid plugin directory
|
||||
flash-player-plugin:
|
||||
flash-player-plugin: Plugin is subject to Adobe terms of use:
|
||||
flash-player-plugin: http://www.adobe.com/go/labs_term_of_use
|
||||
flash-player-plugin: Plugin is subject to Adobe Flash EULA:
|
||||
flash-player-plugin: http://labs.adobe.com/technologies/eula/flashplayer.html
|
||||
flash-player-plugin:
|
Loading…
Reference in a new issue