Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/Makefile
blob: b386b5998c4037712a56f6b4aef65288e94a1504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
V=$(shell git describe --tags)

dist:
	git archive --format=tar --prefix=reflector32-$(V)/ $(V) | gzip -9 > reflector32-$(V).tar.gz
	gpg --detach-sign --use-agent reflector32-$(V).tar.gz

upload:
	scp reflector32-$(V).tar.gz reflector32-$(V).tar.gz.sig sources@sources.archlinux32.org:httpdocs/sources/

clean:
	rm reflector32-$(V).tar.gz reflector32-$(V).tar.gz.sig

.PHONY: dist upload clean