aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
blob: 944928320e8d0957400acb786b456ccc8cb0c067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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:
	gem install bundler
	bundler install --deployment --without="test development" --jobs=4

override_dh_clean:
	dh_clean
	$(RM) -r vendor/


override_dh_auto_test:
	echo "NOP"