geticons 1.2.2

CLI tool to get icons on Linux and other Freedesktop systems
1
2
3
4
5
6
7
8
9
10
11
12
13
all: geticons geticons.1

.PHONY: all

geticons: src/main.rs
	cargo build --release
	cp ./target/release/geticons .

geticons.1: docs/geticons.1.scd
	scdoc < docs/geticons.1.scd > geticons.1

clean:
	rm -r geticons geticons.1