blob: 54d37f3f892e839196eec1083cba9b37811398f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
all:
updpkgsums
makepkg --printsrcinfo > .SRCINFO
rm -f *.zip
rm -f *.zst
clean:
rm -f *.tgz
rm -f *.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 .)
|