File: rules

package info (click to toggle)
scala-parser-combinators 1.0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 364 kB
  • sloc: xml: 59; sh: 21; makefile: 16
file content (24 lines) | stat: -rwxr-xr-x 898 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
#!/usr/bin/make -f

%:
	dh $@ --with maven_repo_helper

include /usr/share/dpkg/default.mk

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)

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/$(DEB_SOURCE).properties
	echo "scala.binary.version.number=$(SCALA_BINARY_VERSION)" >> target/classes/$(DEB_SOURCE).properties
	echo "version.number=$(DEB_VERSION_UPSTREAM)"              >> target/classes/$(DEB_SOURCE).properties

	jar cfm target/$(DEB_SOURCE).jar debian/manifest -C target/classes .

override_dh_auto_clean:
	rm -Rf target