File: rules

package info (click to toggle)
starjava-fits 0.1%2B2017.11.10-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 952 kB
  • sloc: java: 10,417; xml: 452; makefile: 17
file content (22 lines) | stat: -rwxr-xr-x 776 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
20
21
22
#!/usr/bin/make -f

%:
	dh $@ --with javahelper

override_dh_auto_build:
	ant jars
	ant javadocs

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	ant test -Djava.awt.headless=true
endif

get-orig-source:
	svn export https://github.com/Starlink/starjava/trunk/fits starjava-fits ; \
	wget -nv https://github.com/Starlink/starjava/raw/master/LICENSE.txt -P starjava-fits ; \
	VERSION=`xmllint --xpath '//project/property[@name="version"]/@value' starjava-fits/build.xml | cut -d\" -f2| tr - .| tr -d +` ; \
	DATE=`stat -c %y starjava-fits/src/main/uk/ac/starlink/fits/*.java | cut -c-10 | sort|uniq|tail -1| tr - .`; \
	tar cf starjava-fits_$$VERSION+$$DATE.orig.tar starjava-fits ; \
	rm -rf starjava-fits ; \
	xz starjava-fits_$$VERSION+$$DATE.orig.tar