mirror of
https://github.com/solokeys/solo2-cli.git
synced 2026-03-11 17:15:57 -07:00
18 lines
413 B
Makefile
18 lines
413 B
Makefile
build:
|
|
cargo build --release --features cli --bin solo2
|
|
ls -sh target/release/solo2
|
|
|
|
|
|
# for AUR things, kudos to <https://github.com/Foxboron/sbctl>
|
|
|
|
push-aur:
|
|
git subtree push -P pkg/arch ssh://aur@aur.archlinux.org/solo2-cli.git master
|
|
|
|
.PHONY: local-aur
|
|
.ONESHELL:
|
|
local-aur:
|
|
cd pkg/arch
|
|
mkdir -p ./src
|
|
ln -srfT $(CURDIR) ./src/solo2-cli-0.0.7
|
|
makepkg --holdver --syncdeps --noextract --force --install
|