blob: 5b3b00ebf6e00561bf9372e0f766ab03097052bb (
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
|
# Maintainer: aarto <aarto@aur.archlinux.org>
# Contributor: Joel Pickett <mail at vyryls dot com>
_pkgname_suffix=extension-istilldontcareaboutcookies
_firefox_pkgname=firefox-$_pkgname_suffix
_librewolf_pkgname=librewolf-$_pkgname_suffix
_id=idcac-pub@guus.ninja
pkgname=("$_librewolf_pkgname-bin" "$_firefox_pkgname-bin")
pkgver=1.1.4
pkgrel=1
pkgdesc="Debloated fork of the extension I don't care about cookies"
url=https://github.com/OhMyGuus/I-Still-Dont-Care-About-Cookies
arch=('any')
license=('GPL-3.0-only')
noextract=("$_id.xpi")
_number=4213061
source=("idcac-pub@guus.ninja.xpi::https://addons.mozilla.org/firefox/downloads/file/$_number/istilldontcareaboutcookies-$pkgver.xpi"
"https://raw.githubusercontent.com/OhMyGuus/I-Still-Dont-Care-About-Cookies/refs/tags/v$pkgver/LICENSE")
b2sums=('cf2cee8fac38bbcce07671ae6cc03c4a515326f8023ea0b2b0b2977d963eb8446c01db163d91caffc168f54dae253e65b3b8ac90a8d1d045c039f184cedaccc3'
'74915e048cf8b5207abf603136e7d5fcf5b8ad512cce78a2ebe3c88fc3150155893bf9824e6ed6a86414bbe4511a6bd4a42e8ec643c63353dc8eea4a44a021cd')
_package() {
depends=("$1")
provides=("$1-$_pkgname_suffix")
conflicts=("$1-$_pkgname_suffix")
groups=("$1-addons")
install -Dm644 $_id.xpi "$pkgdir/usr/lib/$1/browser/extensions/$_id.xpi"
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$1-$_pkgname_suffix-bin"
}
package_firefox-extension-istilldontcareaboutcookies-bin() {
_package firefox
}
package_librewolf-extension-istilldontcareaboutcookies-bin() {
_package librewolf
}
|