summaryrefslogtreecommitdiff
path: root/libre/iceweasel-ublock-origin/PKGBUILD
blob: 16d69bc39ae543ba54064f558727897de11ea917 (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
# Maintainer: André Silva <emulatorman@parabola.nu>

pkgname=iceweasel-ublock-origin
pkgver=1.1.1
pkgrel=1
pkgdesc="Extension fork of the Adblock Plus for Iceweasel which block ads and banners, but without 'acceptable ads' feature"
arch=('any')
url="https://github.com/gorhill/uBlock"
license=('GPL3')
groups=('iceweasel-addons')
depends=("iceweasel")
makedepends=('unzip')
provides=('iceweasel-adblock-plus')
conflicts=('iceweasel-adblock-plus')
replaces=('firefox-adblock-plus' 'iceweasel-adblock-plus')
source=("https://github.com/gorhill/uBlock/releases/download/$pkgver/uBlock0.firefox.xpi")
md5sums=('9f907a1d2e845cd34acfb5a669c013ac')

package() {
  # extension
  _dest="$pkgdir/usr/lib/iceweasel/browser/extensions/uBlock0@raymondhill.net"
  find . -type d -exec install -d {} $_dest/{} \;
  find . -type f -exec install -Dm644 {} $_dest/{} \;

  # license
  install -Dm644 LICENSE.txt \
    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}