pantry/projects/rust-lang.org/cargo/package.yml

51 lines
1,000 B
YAML
Raw Normal View History

2022-10-27 09:05:13 +03:00
distributable:
url: https://github.com/rust-lang/cargo/archive/refs/tags/{{version}}.tar.gz
strip-components: 1
versions:
github: rust-lang/cargo/tags
provides:
- bin/cargo
runtime:
env:
2023-10-02 03:03:16 +03:00
CARGO_INSTALL_ROOT: ${{home}}/.local
2022-10-27 09:05:13 +03:00
dependencies:
git-scm.org: ^2
2022-10-27 09:05:13 +03:00
rust-lang.org: '*'
openssl.org: ^1 # cargo needs the certs
curl.se: '*'
zlib.net: ^1
libssh2.org: ^1
libgit2.org: ^1
linux:
llvm.org: '*' #FIXME only need the linker actually
2022-10-27 09:05:13 +03:00
build:
dependencies:
gnu.org/tar: '*'
tukaani.org/xz: '*'
freedesktop.org/pkg-config: ^0.29
rust-lang.org/cargo: '*'
script: cargo $ARGS
2022-10-27 09:05:13 +03:00
env:
ARGS:
- install
- --root={{ prefix }}
- --path=.
test:
env:
CC: clang #FIXME
2022-10-27 09:05:13 +03:00
script: |
cargo init . --name xyz_tea_fixture
2022-10-27 09:05:13 +03:00
echo 'fn main() {println!("Hello World!");}' >src/main.rs
cargo clippy
cargo run
cargo run --release
cargo install cowsay
test -x ~/.local/bin/cowsay
~/.local/bin/cowsay xyz.tea.hi