blob: 95f0d0181aedc522a7702003de2589b6c3b6bbfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils
DESCRIPTION="Additional proprietary codecs for vivaldi"
HOMEPAGE="http://ffmpeg.org/"
SRC_URI="https://repo.herecura.eu/herecura/x86_64/${P}-1-x86_64.pkg.tar.xz"
LICENSE="LGPL2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="www-client/vivaldi"
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_prepare() {
:
}
src_compile() {
:
}
src_install() {
doins -r ${S}/*
}
pkg_postinst() {
rm -rf /usr/lib/debug/.build-id/cc/9bf854bde2b8dba8d107f2c94d35ef7127db1d
rm -rf /usr/lib/debug/.build-id/cc/9bf854bde2b8dba8d107f2c94d35ef7127db1d.debug
}
|