diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2019-03-07 22:31:01 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2019-03-07 22:31:01 +1100 |
commit | b28177ffd85ae3b35fda5d77c6d52a873a4ee8ce (patch) | |
tree | 447ebc5871ebea981962a5474f65360607f508ea /rust-bin/Pkgfile | |
parent | f6afbc5b4765e25f26855e6bbcaa5eb4c64409f1 (diff) | |
download | opt-b28177ffd85ae3b35fda5d77c6d52a873a4ee8ce.tar.gz opt-b28177ffd85ae3b35fda5d77c6d52a873a4ee8ce.tar.xz |
rust-bin: initial import, binary version of rust
Diffstat (limited to 'rust-bin/Pkgfile')
-rw-r--r-- | rust-bin/Pkgfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/rust-bin/Pkgfile b/rust-bin/Pkgfile new file mode 100644 index 000000000..3fe60b4a3 --- /dev/null +++ b/rust-bin/Pkgfile @@ -0,0 +1,15 @@ +# Description: The Rust language with Cargo included (binary edition). +# URL: http://www.rust-lang.org/ +# Maintainer: Danny Rawlins, crux at romster dot me +# Depends on: llvm python3 +# Optional: sccache + +name=rust-bin +version=1.32.0 +release=1 +source=(https://crux.ster.zone/downloads/rust/rust-$version-bin.tar.xz) + +build() { + + cp -a $SRC/usr $PKG/ +} |