rust: only build on x86_64/glibc for now; musl and i686 are broken currently.
This commit is contained in:
parent
2f7c8e841f
commit
d5f627949b
|
@ -5,7 +5,7 @@ revision=1
|
|||
wrksrc="rustc-${version/.beta/-beta}"
|
||||
lib32disabled=yes
|
||||
build_style=configure
|
||||
only_for_archs="x86_64 x86_64-musl i686 i686-musl"
|
||||
only_for_archs="x86_64"
|
||||
hostmakedepends="pkg-config curl python"
|
||||
short_desc="A safe, concurrent, practical systems language"
|
||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||
|
@ -21,7 +21,7 @@ do_configure() {
|
|||
x86_64*) _triplet=x86_64-unknown-linux-gnu;;
|
||||
*) _triplet=$XBPS_TARGET_MACHINE;;
|
||||
esac
|
||||
./configure --musl-root=/usr --prefix=/usr --disable-docs --enable-ccache --build=${_triplet} --release-channel=stable
|
||||
./configure --prefix=/usr --disable-docs --enable-ccache --build=${_triplet} --release-channel=stable
|
||||
}
|
||||
post_install() {
|
||||
vlicense COPYRIGHT
|
||||
|
|
Loading…
Reference in New Issue