It might be a good idea to change file:// to local:// (see: https://github.com/archlinuxfr/yaourt/issues/123)
diff --git a/PKGBUILD b/PKGBUILD
index d6dbb62..e21fa88 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,7 @@ license=('custom:vmware')
depends=()
optdepends=()
-source=("file://VMware-Remote-Console-11.1.0-15913118.x86_64.bundle"
+source=("local://VMware-Remote-Console-11.1.0-15913118.x86_64.bundle"
"bootstrap"
"config")
(EDIT: added section) this would make it clear that it is expected to be run locally. Or you could change it like this
diff --git a/PKGBUILD b/PKGBUILD
index d6dbb62..2aeb1bd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,7 @@ license=('custom:vmware')
depends=()
optdepends=()
-source=("file://VMware-Remote-Console-11.1.0-15913118.x86_64.bundle"
+source=("file:///tmp/VMware-Remote-Console-11.1.0-15913118.x86_64.bundle"
"bootstrap"
"config")
and add a step in the comments to say to download the file there (otherwise it is unnecessary complicated).
Pinned Comments
richardjs commented on 2022-05-04 19:02 (UTC) (edited on 2023-11-29 19:23 (UTC) by richardjs)
Notes for 12.0.1-2 [edit: applicable to 12.0.5-1]:
You need to download the VMware-Remote-Console .bundle from https://www.vmware.com/go/download-vmrc and place it in the same directory as the PKGBUILD.
vmware-keymaps has been made an optional dependency. vmrc will run fine without it, although I imagine how well it works may depend on your keyboard setup. Making it an optional dependency removes the problem of conflicting files between vmware packages, but also lets those who don't need it ignore it.