summarylogtreecommitdiffstats
path: root/Makefile
blob: c3d380443c50897b04edb9c5c7c0a2375371e053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all:
	updpkgsums
	makepkg --printsrcinfo > .SRCINFO
	make clean

clean:
	rm -f *.tar *.zip *.zst

test:
	make clean
	makepkg
	namcap PKGBUILD
	namcap *.pkg.tar.zst

mount:
	docker run -it -v $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))/:/vol -w /vol \
		-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
		-v $(HOME)/.config/pulse/cookie:/home/user/.config/pulse/cookie:ro \
		$(shell docker build -qf .docker/Dockerfile-testarch .)