From 5a5afdcbfd6a70701cd38d427d57751ae7b0d3d0 Mon Sep 17 00:00:00 2001 From: PaddiM8 Date: Mon, 22 Jun 2020 14:40:49 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 995285d..a49e1ed 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,16 @@ Kalk is a calculator (both program and library) that supports user-defined varia * Misc: separate expressions by a semicolon to write them on the same line, use the `ans` variable to get the value of the previously calculated expression. ## Installing +### Binaries +Pre-compiled binaries for Linux and Windows (64-bit) are available in the [releases page](https://github.com/PaddiM8/kalk/release). A Windows binary may not always be available for the newest version as of now. +### Compiling Make sure you have `diffutils` `gcc` `make` and `m4` installed. **If you use windows:** [follow the instructions here](https://docs.rs/gmp-mpfr-sys/1.2.3/gmp_mpfr_sys/index.html#building-on-windows) If anyone knows how to get `gmp_mpfr_sys` on Windows on Travis, let me know. -### Cargo install +#### Cargo Run `cargo install kalk_cli` -### Compiling yourself +#### Manually 1. Go into the `kalk_cli` directory. 2. Run `cargo build --release` 3. Grab the binary from `targets/release` From aceb23727965dd6e2b0b9f39911d7a7e313e7ac2 Mon Sep 17 00:00:00 2001 From: Adit Cahya Ramadhan Date: Mon, 29 Jun 2020 06:36:13 +0700 Subject: [PATCH 2/2] Fix broken link to the github release page It's releases with s --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a49e1ed..a878108 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Kalk is a calculator (both program and library) that supports user-defined varia ## Installing ### Binaries -Pre-compiled binaries for Linux and Windows (64-bit) are available in the [releases page](https://github.com/PaddiM8/kalk/release). A Windows binary may not always be available for the newest version as of now. +Pre-compiled binaries for Linux and Windows (64-bit) are available in the [releases page](https://github.com/PaddiM8/kalk/releases). A Windows binary may not always be available for the newest version as of now. ### Compiling Make sure you have `diffutils` `gcc` `make` and `m4` installed. **If you use windows:** [follow the instructions here](https://docs.rs/gmp-mpfr-sys/1.2.3/gmp_mpfr_sys/index.html#building-on-windows) If anyone knows how to get `gmp_mpfr_sys` on Windows on Travis, let me know.