From bc803e41a21c6869a599cb4f2cb76fb279264752 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 7 Dec 2019 01:13:54 +0100 Subject: [PATCH] nushell: raw-cpuid only for x86, set archs properly --- srcpkgs/nushell/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/nushell/template b/srcpkgs/nushell/template index 7229c23f0ab..13ecb32ffb9 100644 --- a/srcpkgs/nushell/template +++ b/srcpkgs/nushell/template @@ -2,6 +2,10 @@ pkgname=nushell version=0.6.1 revision=1 +# raw-cpuid does not support other archs +# https://github.com/nushell/nushell/issues/485 +# remove when the issue is fixed (should fix all archs) +archs="x86_64* i686*" wrksrc="nu-${version}" build_style=cargo hostmakedepends="pkg-config" @@ -13,10 +17,6 @@ homepage="https://www.nushell.sh/" distfiles="https://static.crates.io/crates/nu/nu-${version}.crate" checksum=882549e55b418f11a56a5ed0c528268338d9af9fee88c8b9e0be0dcd4169d238 -case $XBPS_TARGET_MACHINE in - aarch64*|arm*) broken="ARM is not supported right now: https://github.com/nushell/nushell/issues/485" -esac - post_install() { vlicense LICENSE }