diff options
Diffstat (limited to 'www-plugins/yandex-browser-ffmpeg-codecs-bin/yandex-browser-ffmpeg-codecs-bin-110.0.5481.100.ebuild')
-rw-r--r-- | www-plugins/yandex-browser-ffmpeg-codecs-bin/yandex-browser-ffmpeg-codecs-bin-110.0.5481.100.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/www-plugins/yandex-browser-ffmpeg-codecs-bin/yandex-browser-ffmpeg-codecs-bin-110.0.5481.100.ebuild b/www-plugins/yandex-browser-ffmpeg-codecs-bin/yandex-browser-ffmpeg-codecs-bin-110.0.5481.100.ebuild new file mode 100644 index 000000000..9aa81e487 --- /dev/null +++ b/www-plugins/yandex-browser-ffmpeg-codecs-bin/yandex-browser-ffmpeg-codecs-bin-110.0.5481.100.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit unpacker + +KEYWORDS="~amd64 ~x86" +DESCRIPTION="Multi-threaded ffmpeg codecs needed for the HTML5 <audio> and <video> tags" +HOMEPAGE="http://www.chromium.org/Home" +SLOT="0" +LICENSE="BSD" +RESTRICT="bindist strip mirror" + +DEBIAN_REVISION="0ubuntu0.18.04.1" +_FULL_VERSION="${PV}-${DEBIAN_REVISION}" +BASE_URI="http://security.ubuntu.com/ubuntu/pool/universe/c/chromium-browser" +SRC_URI=" + x86? ( ${BASE_URI}/chromium-codecs-ffmpeg-extra_${_FULL_VERSION}_i386.deb ) + amd64? ( ${BASE_URI}/chromium-codecs-ffmpeg-extra_${_FULL_VERSION}_amd64.deb ) +" +S="${WORKDIR}" + +src_unpack() { + unpack_deb ${A} +} + +src_install() { + insinto /opt/yandex/browser-beta + doins usr/lib/chromium-browser/libffmpeg.so + insinto /opt/yandex/browser + doins usr/lib/chromium-browser/libffmpeg.so +} |