summaryrefslogtreecommitdiff
path: root/libre/iceweasel-noscript/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-03-10 00:51:34 -0800
committerroot <root@rshg054.dnsready.net>2013-03-10 00:51:34 -0800
commit6ee08d6a9217906f2ef84f70923d3d362d4b40ad (patch)
treedc3d842884f61485a4c01889d37d9432620d5e38 /libre/iceweasel-noscript/PKGBUILD
parent92eac63df242654434dceb000bac083f6e81a6b9 (diff)
Sun Mar 10 00:50:57 PST 2013
Diffstat (limited to 'libre/iceweasel-noscript/PKGBUILD')
-rw-r--r--libre/iceweasel-noscript/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/libre/iceweasel-noscript/PKGBUILD b/libre/iceweasel-noscript/PKGBUILD
new file mode 100644
index 000000000..ddf6a18a0
--- /dev/null
+++ b/libre/iceweasel-noscript/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer (Parabola): André Silva <emulatorman@lavabit.com>
+
+_pkgname=firefox-noscript
+pkgname=iceweasel-noscript
+pkgver=2.6.5.7
+pkgrel=1
+pkgdesc="plugin for iceweasel which disables script"
+arch=('any')
+url="http://noscript.net/"
+license=('GPL2')
+depends=()
+conflicts=$_pkgname
+provides=$_pkgname=$pkgver
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('82816e7d024c71d698dd108c0aec527d')
+
+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/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
+}