File: rules

package info (click to toggle)
d3 3.5.17-4
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 11,464 kB
  • sloc: javascript: 43,334; makefile: 8; xml: 4
file content (19 lines) | stat: -rwxr-xr-x 429 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
# -*- makefile -*-

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

override_dh_auto_build:
	smash $(CURDIR)/src/d3.js > $(CURDIR)/d3.js
	uglifyjs $(CURDIR)/d3.js > $(CURDIR)/d3.min.js

override_dh_auto_test:
	# nodejs part needs newer node-jsdom not yet in the archive
	# as that has a lot of reverse dependencies
	vows || true

%:
	dh $@

.PHONY: override_dh_auto_build override_dh_auto_test