diff options
author | B Stack <bgstack15@gmail.com> | 2019-02-19 14:11:17 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-02-19 14:11:17 -0500 |
commit | c033cdd7200d654ada811d9ef769de96a7c87b0b (patch) | |
tree | e3b0ba772fa2d5b0ad3e601126eae22998dcbaaf /palemoon-ublock-origin/debian/Makefile | |
parent | rename pm-stack-ublock spec (diff) | |
download | stackrpms-c033cdd7200d654ada811d9ef769de96a7c87b0b.tar.gz stackrpms-c033cdd7200d654ada811d9ef769de96a7c87b0b.tar.bz2 stackrpms-c033cdd7200d654ada811d9ef769de96a7c87b0b.zip |
split pm-ublock into two dirs
Diffstat (limited to 'palemoon-ublock-origin/debian/Makefile')
-rw-r--r-- | palemoon-ublock-origin/debian/Makefile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/palemoon-ublock-origin/debian/Makefile b/palemoon-ublock-origin/debian/Makefile deleted file mode 100644 index 3531a3e..0000000 --- a/palemoon-ublock-origin/debian/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# Makefile for palemoon-ublock-origin for devuan -SOURCE0=uBlock0.firefox-legacy.xpi -MOZ_EXTENSIONS=/usr/lib/palemoon/browser/extensions - -# this needs to be overwritten by the debian/rules file. -DESTDIR=/tmp - -install: - unzip ${SOURCE0} install.rdf - mkdir -p $(DESTDIR)${MOZ_EXTENSIONS} - newfilename="$$( grep 'em:id' install.rdf 2>/dev/null | head -n1 | sed -r -e 's/^.*<em:id>//;' -e 's/<\/em:id>.*$$//;' ).xpi" ; \ - test -z "$${newfilename}" && newfilename="$$( basename $${SOURCE0} )" ; \ - install -Dp -m0644 ${SOURCE0} $(DESTDIR)${MOZ_EXTENSIONS}/$${newfilename} - rm -f install.rdf || : - -uninstall: - rm -f $(DESTDIR)${MOZ_EXTENSIONS}/uBlock0@raymondhill.net.xpi |