aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
blob: c43ea3837675d05dc13d182526044380df8db841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
  
# Ugh
export GEM_HOME := $(shell pwd)/vendor/bundle
export PATH     := ${GEM_HOME}/bin:${PATH}

%:
	dh $@ --with-systemd

override_dh_auto_build:
	bundler install --deployment --without="test development" --jobs=4
	make

override_dh_clean:
	dh_clean
	$(RM) -r vendor/

override_dh_auto_test:
	echo "NOP"