summarylogtreecommitdiffstats
path: root/Makefile
blob: 75faaf28d7ad35c5eb26d333a0d8a867c419f000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
default: build

build: clean namcap
	rm -rf Gemfile.lock
	bundle install
	bundle exec ruby update.rb
	makepkg
	makepkg --printsrcinfo > .SRCINFO

clean:
	git clean -fd
	rm -rf pkg src *.deb *.tar.xz

namcap:
	namcap PKGBUILD

# too many failures we can't correct due to PKGBUILD design
shellcheck:
	shellcheck PKGBUILD

vet: namcap shellcheck