summaryrefslogtreecommitdiff
path: root/libre/icecat-adblock-plus/PKGBUILD
blob: 80c94c16b2d1330a89923796b4ede7c47c49c10c (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
# $Id: PKGBUILD 112006 2014-05-28 09:45:57Z spupykin $
# Maintainer (Arch): Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=icecat-adblock-plus
pkgver=2.6.1
pkgrel=1
pkgdesc="plugin for icecat which block ads and banners"
arch=('any')
url="http://adblockplus.org/"
license=('GPL')
depends=("icecat")
makedepends=('unzip')
provides=(firefox-adblock-plus=$pkgver)
noextract=("adblockplus-$pkgver.xpi")
source=("https://downloads.adblockplus.org/adblockplus-$pkgver.xpi")
md5sums=('ad8c04f09515c92c948d384ddd3f6604')

package() {
  cd $srcdir
  unzip adblockplus-$pkgver.xpi
  local emid=$(sed -n -e '/<\?em:id>\?/!d; s/.*\([\"{].*[}\"]\).*/\1/; s/\"//g; p; q' install.rdf)
  local dstdir=$pkgdir/usr/lib/icecat/browser/extensions/${emid}
  [ -n ${emid} ] || return 1
  install -d $dstdir
  cp -R * $dstdir
  rm $dstdir/*.xpi
  find $pkgdir -type d -exec chmod 0755 {} \;
  find $pkgdir -type f -exec chmod 0644 {} \;
}