blob: f54dffb7d39ebba6d4d23da13e5669e98199ce58 (
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
|
# $Id: PKGBUILD 139089 2015-09-02 08:47:24Z spupykin $
# Maintainer (Arch): Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=iceweasel-adblock-plus
pkgver=2.6.10
pkgrel=1
pkgdesc="Extension for iceweasel which block ads and banners"
arch=('any')
url="http://adblockplus.org/"
license=('GPL')
groups=('iceweasel-addons')
depends=("iceweasel")
makedepends=('unzip')
replaces=('firefox-adblock-plus')
noextract=("adblockplus-$pkgver.xpi")
source=("https://downloads.adblockplus.org/adblockplus-$pkgver.xpi")
md5sums=('df5f71f73ace992fc3504a6c46849b59')
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/iceweasel/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 {} \;
}
|