summaryrefslogtreecommitdiff
path: root/libre/iceweasel-noscript/PKGBUILD
blob: 2d5f48040bad5869f6c98a7672858e6c26938452 (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
# $Id: PKGBUILD 93410 2013-07-03 10:50:31Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer (Parabola): André Silva <emulatorman@lavabit.com>

_pkgname=firefox-noscript
pkgname=iceweasel-noscript
pkgver=2.6.6.7
pkgrel=1
pkgdesc="plugin for iceweasel which disables script"
arch=('any')
url="http://noscript.net/"
license=('GPL2')
depends=()
provides=$_pkgname=$pkgver
makedepends=('unzip')
source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
md5sums=('10b6704f34568d226fb5fe69b7d6043d')

package() {
#  _ffver=`pacman -Q iceweasel-libre | cut -f2 -d\ | cut -f1 -d-`
#  depends=("iceweasel-libre>=${_ffver}" "iceweasel-libre<=${_ffver/0/99}")
  depends=("iceweasel-libre")

  cd $srcdir
  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}
  install -d $dstdir
#  sed -i 's#<em:maxVersion>.*</em:maxVersion>#<em:maxVersion>7.*</em:maxVersion>#' install.rdf
  cp -R * $dstdir
  rm $dstdir/noscript-$pkgver.xpi
}