summarylogtreecommitdiffstats
path: root/Makefile
blob: 4004d385f6c9b3698ebb550391baa7bfd83f4b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
release: clean build commit publish

clean:
	rm -rf kickoff* pkg src

build:
	makepkg
	makepkg --printsrcinfo > .SRCINFO

commit:
	PKGVER=$$(grep -oP '(?<=pkgver\=)[\d\w\.]+' PKGBUILD)
	git add PKGBUILD .SRCINFO
	git commit -m "bump version: $(PKGVER)"

publish: 
	git push