summaryrefslogtreecommitdiff
path: root/libre/icecat-adblock-plus
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-02-06 19:50:34 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-02-06 19:50:34 -0200
commit9642f291001ff9d248a04a8edbac1d8bd363757c (patch)
treeab552ec2edfff9e5fe74155dc7260f9314647435 /libre/icecat-adblock-plus
parentb36cf3a75f1454f1100cbef0bc88c655f362e3b2 (diff)
icecat-{adblock-plus,firebug,raismth,spell-ru}: add new packages to [libre]
Diffstat (limited to 'libre/icecat-adblock-plus')
-rw-r--r--libre/icecat-adblock-plus/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/libre/icecat-adblock-plus/PKGBUILD b/libre/icecat-adblock-plus/PKGBUILD
new file mode 100644
index 000000000..b1ccb3b09
--- /dev/null
+++ b/libre/icecat-adblock-plus/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 104302 2014-01-17 11:39:31Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+
+pkgname=icecat-adblock-plus
+pkgver=2.4.1
+_addons_file=230225
+pkgrel=1.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=("adblock_plus-$pkgver-fx+tb+fn+sm.xpi")
+source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
+md5sums=('3fe51813290a0d7103b620e2813a8c0e')
+
+package() {
+# _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`
+# depends=("icecat>=${_ffver}" "icecat<=${_ffver/0/99}")
+
+ cd $srcdir
+ [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.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
+# sed -i 's#<em:maxVersion>.*</em:maxVersion>#<em:maxVersion>20.*</em:maxVersion>#' install.rdf
+ cp -R * $dstdir
+ rm $dstdir/*.xpi
+ find $pkgdir -type d -exec chmod 0755 {} \;
+ find $pkgdir -type f -exec chmod 0644 {} \;
+}