chromium-pepper-flash: remove; broken

This commit is contained in:
Enno Boland 2016-12-22 20:11:42 +01:00
parent 942007330e
commit 1c9c23bfae
7 changed files with 0 additions and 91 deletions

View File

@ -1,32 +0,0 @@
#
# This script will install the actual plugin, advise the user to read the
# license for Chrome and to re-login to have environment variables set
# properly.
#
BUILD_DIR="./var/tmp/${PKGNAME}.build"
case "${ACTION}" in
post)
. usr/lib/chromium-pepper-flash/chromium-pepper-vars.sh
mkdir -p "$BUILD_DIR"
(
cd "$BUILD_DIR"
xbps-uhelper fetch "${CHROME_URL}>$PKGNAME.deb"
echo "$CHROME_CHECKSUM $PKGNAME.deb" > chksum
sha256sum -c chksum || exit 1
ar x "$PKGNAME.deb"
tar xf data.tar.xz
) || {
echo Error while extracting;
rm -r $BUILD_DIR;
exit 1;
}
mv $BUILD_DIR/opt/google/chrome/PepperFlash/libpepflashplayer.so "usr/lib/chromium-pepper-flash"
mv $BUILD_DIR/opt/google/chrome/PepperFlash/manifest.json "usr/lib/chromium-pepper-flash"
rm -r $BUILD_DIR
;;
esac

View File

@ -1,11 +0,0 @@
- The Pepper Adobe Flashplayer package is licensed software.
You MUST read and agree to the license stored in
/usr/share/licenses/chromium-pepper-flash/license.html
before using it.
- Please re-login to update CHROME_FLAGS or re-source
/etc/profile:
$ source /etc/profile

View File

@ -1,6 +0,0 @@
case "$ACTION" in
pre)
rm usr/lib/chromium-pepper-flash/libpepflashplayer.so
rm usr/lib/chromium-pepper-flash/manifest.json
;;
esac

View File

@ -1 +0,0 @@
see http://www.google.com/chrome/intl/en/eula_text.html

View File

@ -1 +0,0 @@
export CHROME_FLAGS="--ppapi-flash-path=/usr/lib/chromium-pepper-flash/libpepflashplayer.so --ppapi-flash-version=%VERSION%"

View File

@ -1 +0,0 @@
export CHROME_URL="%CHROME_URL%" CHROME_CHECKSUM="%CHROME_CHECKSUM%"

View File

@ -1,39 +0,0 @@
# Template file for 'chromium-pepper-flash'
_chromeVersion="54.0.2840.100"
_chromeRevision="1"
_channel="stable"
_baseUrl="https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable"
pkgname="chromium-pepper-flash"
reverts="46.0.2490.80_1 46.0.2490.80_2 46.0.2490.80_3"
version=23.0.0.162
revision=5
short_desc="Pepper Flash plugin for Chromium"
maintainer="Enno Boland <eb@s01.de>"
homepage="https://www.google.com/chrome"
license="chrome"
only_for_archs="x86_64"
depends="chromium binutils xz"
repository=nonfree
create_wrksrc=yes
_filename=google-chrome-${_channel}_${_chromeVersion}-${_chromeRevision}_amd64.deb
_chromeChecksum=89f0fc871ce19f68b9edfccd6eee1f81cc4b8f79b98a86a30296cf639bf28917
_chromeUrl="${_baseUrl}/${_filename}"
distfiles="${_chromeUrl}"
checksum="$_chromeChecksum"
do_extract() {
:
}
do_install() {
sed -e "s|%VERSION%|${version}|" \
${FILESDIR}/chromium-pepper-flash.sh.in > chromium-pepper-flash.sh
sed \
-e "s|%VERSION%|${version}|" \
-e "s|%CHROME_URL%|${_chromeUrl}|" \
-e "s|%CHROME_CHECKSUM%|${_chromeChecksum}|" \
${FILESDIR}/chromium-pepper-vars.sh.in > chromium-pepper-vars.sh
vinstall chromium-pepper-vars.sh 644 usr/lib/$pkgname
vinstall chromium-pepper-flash.sh 644 etc/profile.d
vlicense ${FILESDIR}/LICENSE
}