summarylogtreecommitdiffstats
path: root/Makefile
blob: 4c07d18d4669f3bf846c55f584a3a7920cce7cfd (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-phonopy

test:
# 	rm -rf ${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}/*.gz

release:
	makepkg --printsrcinfo > .SRCINFO
	git add .
	git commit -m "fix: scikit-build-core"
	git push

.PHONY: test