diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2017-11-14 08:22:52 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2017-11-14 08:24:36 +0100 |
commit | 33f1c9f73b096488150e3dcc9d6bce938bdcdca0 (patch) | |
tree | 0d4bdfab61c24ba0c6b5d25aa68c1eea73348b51 /libre/icecat-ublock-origin | |
parent | 635c991c609690316778de06109df3a0187e2505 (diff) | |
download | abslibre-33f1c9f73b096488150e3dcc9d6bce938bdcdca0.tar.gz abslibre-33f1c9f73b096488150e3dcc9d6bce938bdcdca0.tar.bz2 abslibre-33f1c9f73b096488150e3dcc9d6bce938bdcdca0.zip |
libre/icecat-ublock-origin: updated to 1.14.18
Diffstat (limited to 'libre/icecat-ublock-origin')
-rw-r--r-- | libre/icecat-ublock-origin/PKGBUILD | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/libre/icecat-ublock-origin/PKGBUILD b/libre/icecat-ublock-origin/PKGBUILD index 1e1775298..16a2ffdeb 100644 --- a/libre/icecat-ublock-origin/PKGBUILD +++ b/libre/icecat-ublock-origin/PKGBUILD @@ -4,24 +4,26 @@ # Contributor: jc_gargma <jc_gargma@iserlohn-fortress.net> pkgname=icecat-ublock-origin -pkgver=1.14.16 + +pkgver=1.14.18 pkgrel=1 -pkgdesc='An efficient blocker add-on for various browsers. Fast, potent, and lean.' -url=https://github.com/gorhill/uBlock -arch=('any') -license=('GPL3') -depends=('icecat') -provides=('icecat-adblock-plus') -conflicts=('icecat-adblock-plus') -replaces=('icecat-adblock-plus') -groups=('icecat-addons') -source=("https://github.com/gorhill/uBlock/releases/download/$pkgver/uBlock0.firefox.xpi") -noextract=("${source##*/}") -sha256sums=('e9fb28bb643556c920309d2170dbed87e0ec8921bf8cc9c5d9223fcc2556da90') +arch=(any) + +pkgdesc="An efficient blocker add-on for various browsers. Fast, potent, and lean." +url="https://github.com/gorhill/uBlock" +license=(GPL3) +depends=(icecat) +provides=(icecat-adblock-plus) +conflicts=(icecat-adblock-plus) +replaces=(icecat-adblock-plus) +groups=(icecat-addons) + +source=("uBlock0-$pkgver.firefox.xpi::https://github.com/gorhill/uBlock/releases/download/$pkgver/uBlock0.firefox.xpi") +noextract=("${source%%::*}") +sha256sums=('beddfb38822ff0d91efa43201ddbaa9187ae2a8e1387ffd1ec6d61985e9e6071') package() { - install -Dm755 "${source##*/}" "$pkgdir"/usr/lib/icecat/browser/extensions/uBlock0@raymondhill.net.xpi + install -Dm755 "${source%%::*}" \ + "$pkgdir"/usr/lib/icecat/browser/extensions/uBlock0@raymondhill.net.xpi } - -# vim:set ts=2 sw=2 et: |