tiny-irc-client-git

PKGBUILD for an irc client written in Rust
git clone git://git.wrycode.com/wrycode/AUR/tiny-irc-client-git.git
Log | Files | Refs

commit 6e92af7cea723e9f0b5b7f379fb132f694b7e670
parent f29aa5149dc980fb1039d6233dd46e3344042c74
Author: Nick Econopouly <wry@mm.st>
Date:   Wed, 12 May 2021 11:39:44 -0400

Switch to stable Rust toolchain

Diffstat:
MPKGBUILD | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD @@ -14,15 +14,16 @@ source=(git+$url) sha512sums=(SKIP) build() { - # Installs the Rust nightly toolchain to a temporary - # directory. If you already have the toolchain installed, - # e.g. via the script at https://rustup.rs/ or another - # package, you can remove the rust-nightly dependancy and - # comment out the following three commands. - mkdir -p nightly - export RUSTUP_HOME=$(pwd)/nightly - rustup toolchain install nightly + # Installs the Rust toolchain to a temporary directory. If you + # already have the toolchain installed, e.g. via the script at + # https://rustup.rs/ or another package, you can remove the + # rust-nightly dependancy and comment out the following three + # commands. + + mkdir -p stable + export RUSTUP_HOME=$(pwd)/stable + rustup toolchain install stable # build tiny cd tiny