File: rules

package info (click to toggle)
node-browserify-zlib 0.2.0%2B20170820git8b3f0a862f6b%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 308 kB
  • sloc: makefile: 19; sh: 15
file content (29 lines) | stat: -rwxr-xr-x 687 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
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

BABEL?=babeljs

%:
	dh $@

override_dh_auto_build:
	$(BABEL) src/ --out-dir lib

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS) $(DEB_BUILD_PROFILES)))
	convert rose: test/fixtures/person.jpg
	gzip -9 -n < test/fixtures/person.jpg > test/fixtures/person.jpg.gz
	tap -R spec test/test-*.js
else
	@echo '**********************************************************'
	@echo 'Skip test suite                                           '
	@echo '**********************************************************'
endif

override_dh_clean:
	dh_clean
	rm -rf lib
	rm -rf test/tmp