summarylogtreecommitdiffstats
path: root/Makefile
blob: 43e6d44ab79ce9f39cae0c85238a59364b225e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TMP_PATH=~/.cache/yuh/aur/python-symfc

test:
	# rm -r ${TMP_PATH}
	mkdir -p ${TMP_PATH}
	cp PKGBUILD ${TMP_PATH}
	cd ${TMP_PATH} && makepkg -sfi
	cp ${TMP_PATH}/*.pkg.tar.zst ./

md5:
	sha256sum ${TMP_PATH}/*.zip

release:
	makepkg --printsrcinfo > .SRCINFO
	git add .
	git commit -m "update: 1.7.3"
	git push

.PHONY: test