mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 07:33:48 +02:00
rust: only build on x86_64/glibc for now; musl and i686 are broken currently.
This commit is contained in:
parent
2f7c8e841f
commit
d5f627949b
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ revision=1
|
||||||
wrksrc="rustc-${version/.beta/-beta}"
|
wrksrc="rustc-${version/.beta/-beta}"
|
||||||
lib32disabled=yes
|
lib32disabled=yes
|
||||||
build_style=configure
|
build_style=configure
|
||||||
only_for_archs="x86_64 x86_64-musl i686 i686-musl"
|
only_for_archs="x86_64"
|
||||||
hostmakedepends="pkg-config curl python"
|
hostmakedepends="pkg-config curl python"
|
||||||
short_desc="A safe, concurrent, practical systems language"
|
short_desc="A safe, concurrent, practical systems language"
|
||||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
|
@ -21,7 +21,7 @@ do_configure() {
|
||||||
x86_64*) _triplet=x86_64-unknown-linux-gnu;;
|
x86_64*) _triplet=x86_64-unknown-linux-gnu;;
|
||||||
*) _triplet=$XBPS_TARGET_MACHINE;;
|
*) _triplet=$XBPS_TARGET_MACHINE;;
|
||||||
esac
|
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() {
|
post_install() {
|
||||||
vlicense COPYRIGHT
|
vlicense COPYRIGHT
|
||||||
|
|
Loading…
Add table
Reference in a new issue