summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-26 13:18:18 -0400
committerB Stack <bgstack15@gmail.com>2020-03-26 13:18:18 -0400
commit409578ced9369549b88182efbd75599291146890 (patch)
tree55d60b389775841fe8d83a9fc0ee6694f0f15be7 /palemoon
parentpalemoon rpm: add git submodule manual support (diff)
downloadstackrpms-409578ced9369549b88182efbd75599291146890.tar.gz
stackrpms-409578ced9369549b88182efbd75599291146890.tar.bz2
stackrpms-409578ced9369549b88182efbd75599291146890.zip
fix icon locations for rpm %install
Diffstat (limited to 'palemoon')
-rw-r--r--palemoon/debian/watch8
-rw-r--r--palemoon/palemoon.spec2
2 files changed, 6 insertions, 4 deletions
diff --git a/palemoon/debian/watch b/palemoon/debian/watch
index 3f2290d..cc46979 100644
--- a/palemoon/debian/watch
+++ b/palemoon/debian/watch
@@ -1,5 +1,7 @@
# Reference:
-# https://wiki.debian.org/debian/watch
version=4
-#opts=filenamemangle=s/.+\/PMv?(\d\S+)_Release\.tar\.gz/palemoon_$1.orig\.tar\.gz/ \
- https://github.com/MoonchildProductions/UXP/tags .*/PMv?(\d\S+)_Release\.tar\.gz
+opts=filenamemangle=s/.+\/v?(\d\S+)_Release\.tar\.gz/palemoon_$1.orig\.tar\.gz/ \
+ https://github.com/MoonchildProductions/Pale-Moon/tags .*/v?(\d\S+)_Release\.tar\.gz
+# not working. Uscan does not want to download specific, untagged git commits.
+#opts="component=platform" \
+# https://github.com/MoonchildProductions/UXP/archive/41e5925b4271c598601fdc77238bbf6497576594.tar.gz
diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec
index 290c33f..cfe3639 100644
--- a/palemoon/palemoon.spec
+++ b/palemoon/palemoon.spec
@@ -193,7 +193,7 @@ desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE3}
for s in 16 22 24 32 48 256 ;
do
%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps
- %{__cp} -p application/%{appname}/branding/official/default${s}.png \
+ %{__cp} -p %{appname}/branding/official/default${s}.png \
%{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/%{appname}.png
done
bgstack15