File: rules

package info (click to toggle)
svgsalamander 1.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 7,452 kB
  • sloc: java: 14,722; xml: 2,017; javascript: 19; makefile: 11
file content (19 lines) | stat: -rwxr-xr-x 542 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

%:
	dh $@ --buildsystem=maven

override_dh_auto_build:
	# Invoke javacc to replace the missing ph-javacc-maven-plugin
	javacc -OUTPUT_DIRECTORY=svg-core/src/main/java/com/kitfox/svg/animation/parser svg-core/src/main/java/com/kitfox/svg/animation/parser/AnimTimeParser.jjt

	dh_auto_build -- -f svg-core/pom.xml package

override_dh_auto_test:
	dh_auto_test -- -f svg-core/pom.xml test

override_dh_auto_install:
	dh_auto_install -- -f svg-core/pom.xml

override_dh_auto_clean:
	dh_auto_clean -- -f svg-core/pom.xml clean