Pi66

pino-rs
Rust notification daemon.
git clone https://git.pi66.xyz/pino-rs

Makefile

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
all: build

build:
    CMAKE_POLICY_VERSION_MINIMUM=3.5 cargo build --release 

install: build
    sudo install -m755 target/release/pino /bin/pino

uninstall:
    sudo rm -f /bin/pino
    sudo rm -rf ~/.config/pino

clean:
    cargo clean

.PHONY: all build install uninstall clean