pantry/projects/rust-lang.org/package.yml
2022-08-27 14:24:24 -04:00

64 lines
1.5 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

distributable:
url: https://static.rust-lang.org/dist/rustc-{{ version }}-src.tar.gz
strip-components: 1
versions:
github: rust-lang/rust
strip: /^Rust /
# TODO cargo should be a separate package (probs)
# NOTE that it does have independent versioning
# TODO we should disable rust-up etc. if you want that, install rust with rust-up!
provides:
- bin/cargo
- bin/rustc
- bin/rustdoc
- bin/rust-lldb
- bin/rust-gdb
- bin/rust-gdbgui
options:
- cargo # the rust package manager
- rls
- clippy
- rustfmt
- analysis
- { name: rust-demangler, default: false }
dependencies:
#FIXME strictly rustc only needs a linker
tea.xyz/gx/cc: c99
#TODO cargo needs git
# this is a usage dependency, it's not required for cargo to run, just for some usages of cargo to run
# so would be a little more strict than “recommended“
#git-scm.com: 2
build:
dependencies:
tea.xyz/gx/make: '*' #FIXME surely we dont need make AND ninja
cmake.org: ^3.20
ninja-build.org: ^1.10
curl.se: '*'
python.org: 3
script: |-
./configure $ARGS
make install
mv ./build/{{ hw.target }}/stage0/bin/cargo {{ prefix }}/bin/cargo
rm -rf {{prefix}}/share/doc
#TODO ^^ build cargo properly
env:
ARGS:
- --enable-vendor
- --prefix={{ prefix }}
- --enable-ninja
- --enable-optimize
- --disable-docs # docs are online
test:
script: |
rustc $FIXTURE -o hello
./hello
fixture: |
fn main() {
println!("Hello World!");
}