File: rules

package info (click to toggle)
cedar-backup3 3.1.12-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,576 kB
  • sloc: python: 63,456; xml: 9,611; sh: 595; makefile: 74
file content (35 lines) | stat: -rwxr-xr-x 956 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
#!/usr/bin/make -f

# Set to enable verbose output from debhelper
#export DH_VERBOSE=1

# Javascript locations
STATIC_DIR=debian/cedar-backup3-doc/usr/share/doc/cedar-backup3-doc/interface/_static
JQUERY_LIB=/usr/share/javascript/jquery/jquery.js
UNDERSCORE_LIB=/usr/share/javascript/underscore/underscore.js

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_install:
	dh_install --fail-missing

override_dh_compress:
	dh_compress -X.py -Xmanual.txt

override_dh_auto_install:
	python3 setup.py install --no-compile --install-purelib lib/cedar-backup3 --install-scripts bin

# Per the Lintian embedded-javascript-library warning, we use pre-packaged Javascript libraries
override_dh_installdocs:
	dh_installdocs
	rm $(STATIC_DIR)/jquery.js
	rm $(STATIC_DIR)/underscore.js
	ln -s $(JQUERY_LIB) $(STATIC_DIR)
	ln -s $(UNDERSCORE_LIB) $(STATIC_DIR)

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	sh debian/smoketest
endif