You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to build this app natively for archlinux. I have no idea why the build process fails, as there is little to no information in the terminal.
As a reference this is my PKGBUILD, where you can see the steps that are being executed and the dependencys I have installed. I guess some dependencies are missing, but I dont know yet which it is.
pkgname=bitbox-wallet-app
pkgver=4.40.0
pkgrel=1
pkgdesc="BitBox cryptocurrency hardware wallet desktop app with Bitcoin, Segwit, Bech32 and native Litecoin support in an AppImage"
arch=('x86_64')
url="https://github.com/digitalbitbox/bitbox-wallet-app"
license=('Apache')
depends=('hicolor-icon-theme' 'zlib' 'fuse')
makedepends=('p7zip' 'nodejs-lts-hydrogen' 'qt5-base' 'npm>=9' 'go' 'git')
validpgpkeys=('DD09E41309750EBFAE0DEF63509249B068D215AE')
source=("https://github.com/digitalbitbox/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz"
)
sha512sums=('863fad1d762f9f1c2ce7da6f07c92380fd4247ec9dc367a15574f63026b2ef6ca148c7632327575c4400806188fc200bbce6223c942c0ee8b139bf1816afac9a')
prepare() {
make -C "${pkgname}-${pkgver}" envinit
}
build() {
make -C "${pkgname}-${pkgver}" qt-linux
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# todo
}
This is the terminal log (only the last few lines, as the log is very long):
It seems that you're not very familiar with making on linux. You see the error make[3]: *** [Makefile.linux:9: linux] Error 1, which seems to be the file .../frontends/qt/server/Makefile.linux, at line 9. There you have CC=clang \, so I guess you need the clang package.
I would recommend to close this issue.
Hi,
I am trying to build this app natively for archlinux. I have no idea why the build process fails, as there is little to no information in the terminal.
As a reference this is my PKGBUILD, where you can see the steps that are being executed and the dependencys I have installed. I guess some dependencies are missing, but I dont know yet which it is.
This is the terminal log (only the last few lines, as the log is very long):
The text was updated successfully, but these errors were encountered: