2023-02-19 10:46:44 +00:00
|
|
|
# Copyright 1999-2023 Gentoo Authors
|
2023-01-12 20:15:11 +00:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
inherit unpacker
|
|
|
|
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
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"
|
|
|
|
|
2023-04-15 11:45:41 +00:00
|
|
|
DEBIAN_REVISION="0ubuntu0.18.04.1"
|
2023-01-12 20:15:11 +00:00
|
|
|
_FULL_VERSION="${PV}-${DEBIAN_REVISION}"
|
2023-04-15 11:45:41 +00:00
|
|
|
BASE_URI="http://launchpadlibrarian.net/651923070"
|
2023-01-12 20:15:11 +00:00
|
|
|
SRC_URI="
|
|
|
|
amd64? ( ${BASE_URI}/chromium-codecs-ffmpeg-extra_${_FULL_VERSION}_amd64.deb )
|
|
|
|
"
|
|
|
|
S="${WORKDIR}"
|
2023-02-19 10:46:44 +00:00
|
|
|
QA_PREBUILT="*"
|
2023-01-12 20:15:11 +00:00
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
unpack_deb ${A}
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto /opt/yandex/browser
|
|
|
|
doins usr/lib/chromium-browser/libffmpeg.so
|
|
|
|
}
|