tp-note 1.12.19

Minimalist note taking: edit and save your clipboard content as a note file
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# !/bin/sh
set -x
rustup default stable
rustup target add x86_64-unknown-linux-musl


# rust-clipboard needs
#sudo apt install xorg-dev

# gtk-sys and pango-sys need
#sudo apt install libgtk-3-dev

cargo build --target x86_64-unknown-linux-gnu  --release
strip -s ../target/x86_64-unknown-linux-gnu/release/tp-note

PKG_CONFIG_ALLOW_CROSS=1 cargo build --target x86_64-unknown-linux-musl --release
strip -s ../target/x86_64-unknown-linux-musl/release/tp-note