2014-02-15 14:59:50 +01:00
|
|
|
# Template file for 'chromium-pepper-flash'
|
|
|
|
pkgname=chromium-pepper-flash
|
2014-09-09 19:17:12 +02:00
|
|
|
version=15.0.0.152
|
|
|
|
_chromeVersion=37.0.2062.120-1
|
2014-02-15 14:59:50 +01:00
|
|
|
_channel='stable'
|
2014-03-16 01:34:10 +01:00
|
|
|
_baseUrl='http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable'
|
2014-06-10 19:00:16 +02:00
|
|
|
revision=1
|
2014-02-15 14:59:50 +01:00
|
|
|
short_desc="Pepper Flash plugin for Chromium"
|
|
|
|
maintainer="Enno Boland <eb@s01.de>"
|
|
|
|
homepage="http://www.google.com/chrome"
|
|
|
|
license="chrome"
|
2014-03-13 09:58:25 +01:00
|
|
|
lib32disabled=yes
|
2014-02-15 14:59:50 +01:00
|
|
|
nonfree=yes
|
|
|
|
only_for_archs="i686 x86_64"
|
2014-03-13 13:20:17 +01:00
|
|
|
depends="chromium binutils"
|
|
|
|
create_wrksrc=yes
|
2014-02-15 14:59:50 +01:00
|
|
|
|
2014-03-13 13:20:17 +01:00
|
|
|
case "${XBPS_TARGET_MACHINE}" in
|
|
|
|
x86_64)
|
|
|
|
_filename=google-chrome-${_channel}_${_chromeVersion}_amd64.deb
|
2014-09-09 19:17:12 +02:00
|
|
|
_chromeChecksum+=" e20618b1efdd96096a4599cc33bbc2411ada0394cdd6be0a2b65a65d302e0c0b"
|
2014-03-13 13:20:17 +01:00
|
|
|
;;
|
|
|
|
i686)
|
|
|
|
_filename=google-chrome-${_channel}_${_chromeVersion}_i386.deb
|
2014-09-09 19:17:12 +02:00
|
|
|
_chromeChecksum+=" e7c190c5ce7301b654ed1b5bed7ef72c13e8023ff536a97deae8c5617d71fc1f"
|
2014-03-13 13:20:17 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
_chromeUrl="${_baseUrl}/${_filename}"
|
|
|
|
distfiles="http://www.google.com/chrome/intl/en/eula_text.html>license.html ${_chromeUrl}"
|
|
|
|
checksum="8dd9b0034b69d523eab459ee3b00379421e4e41b780014b0345aba5697a86bc4
|
|
|
|
$_chromeChecksum"
|
|
|
|
|
|
|
|
skip_extraction="license.html $_filename"
|
2014-02-15 14:59:50 +01:00
|
|
|
|
|
|
|
do_build() {
|
2014-03-13 13:20:17 +01:00
|
|
|
sed \
|
|
|
|
-e "s|%VERSION%|${version}|" \
|
|
|
|
${FILESDIR}/chromium-pepper-flash.sh.in > chromium-pepper-flash.sh
|
|
|
|
sed \
|
|
|
|
-e "s|%CHROME_URL%|${_chromeUrl}|" \
|
|
|
|
-e "s|%CHROME_CHECKSUM%|${_chromeChecksum}|" \
|
|
|
|
${FILESDIR}/chromium-pepper-vars.sh.in > chromium-pepper-vars.sh
|
2014-02-15 14:59:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
vmkdir "usr/lib/chromium-pepper-flash"
|
2014-03-13 13:20:17 +01:00
|
|
|
vcopy chromium-pepper-vars.sh "usr/lib/chromium-pepper-flash"
|
2014-02-15 14:59:50 +01:00
|
|
|
|
2014-03-13 13:20:17 +01:00
|
|
|
vinstall "${XBPS_SRCDISTDIR}/$pkgname-$version/license.html" 644 "usr/share/licenses/chromium-pepper-flash"
|
2014-02-15 14:59:50 +01:00
|
|
|
|
2014-02-22 15:28:21 +01:00
|
|
|
vmkdir "etc/profile.d"
|
2014-02-15 14:59:50 +01:00
|
|
|
vinstall "chromium-pepper-flash.sh" 644 "etc/profile.d"
|
|
|
|
}
|