File: rules

package info (click to toggle)
trapperkeeper-status-clojure 1.1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: sh: 71; makefile: 34; xml: 10
file content (42 lines) | stat: -rwxr-xr-x 1,147 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/make -f

include /usr/share/dpkg/pkg-info.mk
include /usr/share/javahelper/java-vars.mk

export LEIN_HOME=$(CURDIR)/.lein
export LEIN_OFFLINE=true
NAME=trapperkeeper-status
SSLDIR=dev-resources/puppetlabs/trapperkeeper-status/status-proxy-service-test/

%:
	dh $@ --with javahelper --with maven_repo_helper

override_dh_auto_configure:
	cd debian && ln -sf /usr/share/maven-repo .

override_dh_auto_build:
	lein pom debian/pom.xml
	lein i18n make
	lein jar
	# symlink so we don't need a version in debian/*.poms
	cd target && ln -sf $(NAME)-$(DEB_VERSION_UPSTREAM).jar $(NAME).jar

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	cd $(SSLDIR) && mv ssl ssl.orig
	cd dev-resources && mkdir ssl
	chmod +x ./dev-resources/gen-pki.sh && ./dev-resources/gen-pki.sh
	mv dev-resources/ssl $(SSLDIR)
	cd $(SSLDIR)/ssl && mkdir certs private_keys \
		&& mv ca.pem certs/ \
		&& mv cert.pem certs/localhost.pem \
		&& mv key.pem private_keys/localhost.pem
	lein test
	cd $(SSLDIR) && rm -rf ssl && mv ssl.orig ssl
endif

override_dh_clean:
	rm -f debian/maven-repo
	rm -Rf target ressources
	rm -f debian/pom.xml
	dh_clean