File: rules

package info (click to toggle)
starjava-cdf 1.0%2B2025.02.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 444 kB
  • sloc: java: 1,073; xml: 477; makefile: 22
file content (29 lines) | stat: -rwxr-xr-x 919 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

%:
	dh $@ --with javahelper

override_dh_auto_build:
	ant jars
	ant javadocs

#override_dh_auto_test:
#	ant test

get-orig-source:
	git clone --filter=blob:none --sparse --single-branch --branch master \
	    https://github.com/Starlink/starjava \
            starjava-repo
	cd starjava-repo; \
	TAG=`git tag --list stilts-\* --sort=creatordate |tail -1` ;\
	git switch --detach $$TAG ; \
	git sparse-checkout add cdf ; \
	git log -1 --format=%as cdf/ | tr - . > ../starjava-date.txt
	mv starjava-repo/cdf starjava-cdf
	mv starjava-repo/LICENSE.txt starjava-cdf
	rm -rf starjava-repo
	VERSION=`xmllint --xpath '//project/property[@name="version"]/@value' starjava-cdf/build.xml | cut -d\" -f2| tr - .| tr -d +` ; \
	DATE=`cat starjava-date.txt`; \
	tar cf starjava-cdf_$$VERSION+$$DATE.orig.tar starjava-cdf ; \
	rm -rf starjava-cdf  starjava-date.txt ; \
	xz starjava-cdf_$$VERSION+$$DATE.orig.tar