summaryrefslogtreecommitdiff
path: root/waterfox-ublock-origin
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-03 15:44:43 -0500
committerB Stack <bgstack15@gmail.com>2020-03-03 15:44:43 -0500
commit54ea0c5f31e1e08c08c9d828ad95882ce515b6b9 (patch)
tree361ce9b2cb1f38170bc0a56a5f1ab70491b6dd28 /waterfox-ublock-origin
parentublock 1.16.4.19 (diff)
downloadstackrpms-54ea0c5f31e1e08c08c9d828ad95882ce515b6b9.tar.gz
stackrpms-54ea0c5f31e1e08c08c9d828ad95882ce515b6b9.tar.bz2
stackrpms-54ea0c5f31e1e08c08c9d828ad95882ce515b6b9.zip
ublock: fix filenames used for rpm
Diffstat (limited to 'waterfox-ublock-origin')
-rw-r--r--waterfox-ublock-origin/waterfox-ublock-origin.spec6
1 files changed, 3 insertions, 3 deletions
diff --git a/waterfox-ublock-origin/waterfox-ublock-origin.spec b/waterfox-ublock-origin/waterfox-ublock-origin.spec
index 712dcd0..6005740 100644
--- a/waterfox-ublock-origin/waterfox-ublock-origin.spec
+++ b/waterfox-ublock-origin/waterfox-ublock-origin.spec
@@ -12,7 +12,7 @@ Group: Applications/Internet
License: GPLv3+ and LGPLv3 and MIT and OFL
URL: https://github.com/gorhill/uBlock
Source0: README.md
-Source1: https://github.com/gorhill/uBlock-for-firefox-legacy/releases/download/firefox-legacy-%{version}/uBlock0.firefox-legacy.xpi
+Source1: https://github.com/gorhill/uBlock-for-firefox-legacy/releases/download/firefox-legacy-%{version}/uBlock0_%{version}.firefox-legacy.xpi
BuildRequires: unzip
BuildRequires: coreutils
BuildArch: noarch
@@ -37,10 +37,10 @@ EasyPrivacy, and Peter Lowe's ad/tracking/malware servers.
# learn extension id to name the file
%{__unzip} -o %{SOURCE1} install.rdf
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} )"
+test -z "${newfilename}" && newfilename="$( basename %{SOURCE1} )"
mkdir -p %{buildroot}%{moz_extensions}/%{app_id}
-install -Dp -m0644 %{SOURCE0} %{buildroot}%{moz_extensions}/%{app_id}/${newfilename}
+install -Dp -m0644 %{SOURCE1} %{buildroot}%{moz_extensions}/%{app_id}/${newfilename}
rm -rf install.rdf
bgstack15