trying to install vmware and i need ncurses5-compat-libs but i get a build error
dont know what the issue is
Building ncurses5-compat-libs... ==> Making package: ncurses5-compat-libs 6.1-1 (Sun 08 Sep 2019 20:02:58 BST) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found ncurses-6.1.tar.gz -> Found ncurses-6.1.tar.gz.sig ==> Validating source files with md5sums... ncurses-6.1.tar.gz ... Passed ncurses-6.1.tar.gz.sig ... Skipped ==> Verifying source file signatures with gpg... ncurses-6.1.tar.gz ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting ncurses-6.1.tar.gz with bsdtar ==> Removing existing $pkgdir/ directory... ==> Starting build()... configure: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used. checking for egrep... grep -E Configuring NCURSES 6.1 ABI 6 (Sun Sep 8 20:02:59 BST 2019) checking for package version... 6.0 checking for package patch date... 20180127 configure: WARNING: overriding ABI version 6 to 5 checking build system type... x86_64-pc-linux-gnu checking host system type... configure: error: /bin/sh ./config.sub --with-versioned-syms failed ==> ERROR: A failure occurred in build(). Aborting...
Pinned Comments
WoefulDerelict commented on 2016-05-23 19:35 (UTC) (edited on 2018-08-18 20:22 (UTC) by WoefulDerelict)
This PKGBUILD verifies the authenticity of the source via PGP signatures which are not part of the Arch Linux keyring. In order to complete the process it is necessary to import the key(s) from the ‘validpgpkeys’ array into the user’s keyring before calling makepkg. There is a helpful article explaining this process by one of Arch Linux's developers located here: http://allanmcrae.com/2015/01/two-pgp-keyrings-for-package-management-in-arch-linux/
Instructions on importing keys from a keyserver and how to automate the retrieval process can be found in the Arch Linux wiki here: https://wiki.archlinux.org/index.php/GnuPG#Use_a_keyserver This article also contains helpful information describing the installation of GnuPG, its configuration and usage.
Execute the following to import keys using gpg:
gpg --recv-keys <KEYID - See 'validpgpkeys' array in PKGBUILD>
The PGP signature check can be skipped by passing --skippgpcheck to makepkg.
Consult the makepkg manual page for a full list of options. [https://www.archlinux.org/pacman/makepkg.8.html]