blob: 137a71d7b597f88196564d58cd02d7173bed23b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.PHONY: all
all: clean rebuild srcinfo
rebuild:
updpkgsums
makepkg -s
srcinfo:
makepkg --printsrcinfo > .SRCINFO
clean:
rm -rf pkg src twitch-cli*.tar.*
get-checksum:
@>&2 echo "Checksum for Linux_x86_64 file"
@>&2 echo "Checksum link: https://github.com/twitchdev/twitch-cli/releases/download/${VERSION}/checksums.txt"
@curl -s -L "https://github.com/twitchdev/twitch-cli/releases/download/${VERSION}/checksums.txt" | grep Linux_x86_64 | cut -d' ' -f1
|