vp-build/srcpkgs/adobe-flash-plugin/template

46 lines
1.8 KiB
Bash

# Template file for 'adobe-flash-plugin'
pkgname=adobe-flash-plugin
version=25.0.0.171
revision=1
# The EULA file
_eula="https://www.adobe.com/content/dam/Adobe/en/legal/licenses-terms/pdf/PlatformClients_PC_WWEULA-en_US-20150407_1357.pdf"
_eulacksum=91e504a9e99ebd988ffa95ce0d5feaf340410c03709348297301a22dc11df1a8
_url=http://fpdownload.adobe.com/get/flashplayer/pdc/${version}
if [ "$XBPS_MACHINE" = "x86_64" ]; then
_disttarball="${_url}/flash_player_npapi_linux.x86_64.tar.gz"
_distcksum=60fe4a22278dda4e778f69bd063833fcce778cf21c88ebe4932095ae00c8cce4
else
_disttarball="${_url}/flash_player_npapi_linux.i386.tar.gz"
_distcksum=83395b43da1689104e569006c2a75d159d6b12f4c07d0d8e4e05e70b233662f4
fi
distfiles="${_eula} ${_disttarball}"
checksum="${_eulacksum} ${_distcksum}"
skip_extraction="$(basename ${_eula})"
short_desc="Adobe Flash Player plugin for Netscape compatible browsers"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://www.adobe.com"
license="Adobe License (non free)"
repository="nonfree"
depends="curl hicolor-icon-theme desktop-file-utils"
restricted=yes
create_wrksrc=yes
only_for_archs="i686 x86_64"
nopie=yes
do_install() {
vinstall libflashplayer.so 755 usr/lib/mozilla/plugins
#vinstall usr/lib/kde4/kcm_adobe_flash_player.so 755 usr/lib/kde4
vbin usr/bin/flash-player-properties
for i in 16x16 22x22 24x24 32x32 48x48; do
vinstall usr/share/icons/hicolor/${i}/apps/flash-player-properties.png \
644 usr/share/icons/hicolor/${i}/apps
done
vinstall usr/share/applications/flash-player-properties.desktop 644 \
usr/share/applications
vinstall usr/share/kde4/services/kcm_adobe_flash_player.desktop 644 \
usr/share/kde4/services
vinstall "${XBPS_SRCDISTDIR}/${pkgname}-${version}/$(basename ${_eula})" 644 \
usr/share/licenses/${pkgname} LICENSE.pdf
}