blob: 683c6ba7090ed444689d53616fb4af339baa7e27 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
VER="1.1.4"
DESCRIPTION="LibRedirect addon for Firefox"
HOMEPAGE="https://github.com/libredirect/browser_extension"
XPI="istilldontcareaboutcookies-${VER}.xpi"
SRC_URI="https://addons.mozilla.org/firefox/downloads/file/4216095/${XPI}"
# alternative
#SRC_URI="https://github.com/OhMyGuus/I-Still-Dont-Care-About-Cookies/releases/download/v${VER}/${XPI}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND=""
S="${WORKDIR}"
src_install() {
dodir "/usr/share/firefox-addons"
cp "${DISTDIR}/${XPI}" "${D}/usr/share/firefox-addons/idcac-pub@guus.ninja.xpi"
}
|