rust: split rustlib into rust-std
[ci skip]
This commit is contained in:
parent
2114bf704b
commit
21d13de728
2 changed files with 11 additions and 2 deletions
1
srcpkgs/rust-std
Symbolic link
1
srcpkgs/rust-std
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
rust
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'rust'
|
# Template file for 'rust'
|
||||||
pkgname=rust
|
pkgname=rust
|
||||||
version=1.28.0
|
version=1.28.0
|
||||||
revision=3
|
revision=4
|
||||||
_rust_dist_version=1.28.0
|
_rust_dist_version=1.28.0
|
||||||
_cargo_dist_version=0.30.0
|
_cargo_dist_version=0.30.0
|
||||||
# NB. if you push any(!) new version, don't forget to put a build
|
# NB. if you push any(!) new version, don't forget to put a build
|
||||||
|
@ -13,6 +13,7 @@ build_style=configure
|
||||||
make_build_args="dist VERBOSE=1"
|
make_build_args="dist VERBOSE=1"
|
||||||
hostmakedepends="cmake curl pkg-config python"
|
hostmakedepends="cmake curl pkg-config python"
|
||||||
makedepends="libffi-devel llvm ncurses-devel libxml2-devel zlib-devel"
|
makedepends="libffi-devel llvm ncurses-devel libxml2-devel zlib-devel"
|
||||||
|
depends="rust-std"
|
||||||
short_desc="Safe, concurrent, practical systems language"
|
short_desc="Safe, concurrent, practical systems language"
|
||||||
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
||||||
homepage="https://www.rust-lang.org/"
|
homepage="https://www.rust-lang.org/"
|
||||||
|
@ -24,7 +25,7 @@ if [ "$CROSS_BUILD" ]; then
|
||||||
hostmakedepends+=" cargo llvm"
|
hostmakedepends+=" cargo llvm"
|
||||||
|
|
||||||
# These are required for building the buildhost's stage0/1
|
# These are required for building the buildhost's stage0/1
|
||||||
hostmakedepends+=" libffi-devel libxml2-devel
|
hostmakedepends+=" libffi-devel libxml2-devel
|
||||||
ncurses-devel zlib-devel"
|
ncurses-devel zlib-devel"
|
||||||
else
|
else
|
||||||
case "$XBPS_MACHINE" in
|
case "$XBPS_MACHINE" in
|
||||||
|
@ -195,3 +196,10 @@ rust-doc_package() {
|
||||||
vmove usr/share/doc
|
vmove usr/share/doc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rust-std_package() {
|
||||||
|
short_desc+=" - standard library"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/lib/rustlib
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue