File: rules

package info (click to toggle)
starjava-ttools 3.4.7-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,016 kB
  • sloc: java: 157,434; xml: 18,060; javascript: 670; python: 641; sh: 105; makefile: 20
file content (26 lines) | stat: -rwxr-xr-x 961 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/make -f

%:
	dh $@ --with javahelper

override_dh_auto_build:
	ant jars
	ant javadocs || true
	ant docs

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	ant test -Djava.awt.headless=true
#	linkchecker build/docs/sun256/index.html
endif

get-orig-source:
	TAG=`svn ls https://github.com/Starlink/starjava/tags |egrep ^stilts-[1-9]| tail -1 | cut -d/ -f1` ; \
	svn export https://github.com/Starlink/starjava/tags/$$TAG/ttools starjava-ttools ; \
	wget -nv https://github.com/Starlink/starjava/raw/master/LICENSE.txt -P starjava-ttools ; \
	VERSION=`xmllint --xpath '//project/property[@name="version"]/@value' starjava-ttools/build.xml | cut -d\" -f2| tr - .| tr  - . | tr -d +` ; \
	rm -rf starjava-ttools/src/lib/* starjava-ttools/src/docs/*.jar ; \
	rm -rf starjava-ttools/src/testlib/*.jar ; \
	tar cf starjava-ttools_$$VERSION.orig.tar starjava-ttools ; \
	rm -rf starjava-ttools ; \
	xz starjava-ttools_$$VERSION.orig.tar