aboutsummaryrefslogtreecommitdiff
path: root/appimage/build_appimage.sh
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-05-08 11:34:40 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-05-08 11:34:40 +0200
commitf471d64277943964e3ecc78ea48421aa2a97f01d (patch)
tree5702643fd79552aeda0d7e2ea23493466dfdf24b /appimage/build_appimage.sh
parentv76.0-1 (diff)
downloadlibrewolf-linux-f471d64277943964e3ecc78ea48421aa2a97f01d.tar.gz
librewolf-linux-f471d64277943964e3ecc78ea48421aa2a97f01d.tar.bz2
librewolf-linux-f471d64277943964e3ecc78ea48421aa2a97f01d.zip
Drop AppImage validation
The AppImage validation tools complain even when one follows their recommendations on supplying AppStream metadata and with correctly named files. I'm now starting to understand why most AppImages don't bother with it.
Diffstat (limited to 'appimage/build_appimage.sh')
-rwxr-xr-xappimage/build_appimage.sh8
1 files changed, 2 insertions, 6 deletions
diff --git a/appimage/build_appimage.sh b/appimage/build_appimage.sh
index 4229004..5cc1b9e 100755
--- a/appimage/build_appimage.sh
+++ b/appimage/build_appimage.sh
@@ -46,13 +46,9 @@ apt -qq update && apt -qqy install wget;
wget $_APPIMAGETOOL_DOWNLOAD_URL -O $_APPIMAGETOOL_FILE;
chmod +x $_APPIMAGETOOL_FILE;
-# Installs appstream-util and appstreamcli
-apt -qqy install appstream-util appstream
-
# add appstream metadata
-install -Dvm644 "$_BINARY_TARBALL_EXTRACTED_FOLDER/io.gitlab.LibreWolf.appdata.xml" "$_BINARY_TARBALL_EXTRACTED_FOLDER/usr/share/metainfo/librewolf.appdata.xml"
-
-# install -Dvm644 "$_BINARY_TARBALL_EXTRACTED_FOLDER/librewolf.desktop" "$_BINARY_TARBALL_EXTRACTED_FOLDER/io.gitlab.LibreWolf.desktop"
+install -Dvm644 "$_BINARY_TARBALL_EXTRACTED_FOLDER/io.gitlab.LibreWolf.appdata.xml" "$_BINARY_TARBALL_EXTRACTED_FOLDER/usr/share/metainfo/io.gitlab.LibreWolf.appdata.xml"
+rm -f "$_BINARY_TARBALL_EXTRACTED_FOLDER/io.gitlab.LibreWolf.appdata.xml"
# add libdbus-glib-1.so.2, just in case
install -Dvm644 "/usr/lib/${CARCH}-linux-gnu/libdbus-glib-1.so.2" "$_BINARY_TARBALL_EXTRACTED_FOLDER/usr/lib/libdbus-glib-1.so."2
bgstack15