#!/usr/bin/make -f

%:
	dh $@ --with maven_repo_helper

PACKAGE=$(shell dpkg-parsechangelog --show-field Source)

SCALA_VERSION=$(shell scala -version 2>&1 | cut -f 5 -d ' ')
SCALA_MAJOR=$(shell scala -version 2>&1 | cut -f 5 -d ' ' | cut -f 1 -d '.')
SCALA_MINOR=$(shell scala -version 2>&1 | cut -f 5 -d ' ' | cut -f 2 -d '.')
SCALA_BINARY_VERSION=$(SCALA_MAJOR).$(SCALA_MINOR)
VERSION=$(shell dpkg-parsechangelog | sed -rne 's/^Version: ([0-9.]+)[-+].*$$/\1/p')

override_dh_auto_build:
	mkdir -p target/classes
	scalac -d target/classes $(shell find src/main/scala -name *.scala)
	
	echo "scala.version.number=$(SCALA_VERSION)"               >> target/classes/$(PACKAGE).properties
	echo "scala.binary.version.number=$(SCALA_BINARY_VERSION)" >> target/classes/$(PACKAGE).properties
	echo "version.number=$(VERSION)"                           >> target/classes/$(PACKAGE).properties
	
	jar cfm target/$(PACKAGE).jar debian/manifest -C target/classes .

override_dh_auto_clean:
	rm -Rf target

get-orig-source:
	uscan --download-current-version --rename
