12 lines
305 B
Makefile
Executable File
12 lines
305 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --buildsystem=ant --with maven-repo-helper
|
|
|
|
override_dh_auto_build:
|
|
# copy MANIFEST.MF to src/main/resources/META-INF/ to include it in the jar
|
|
install -d src/main/resources/META-INF/
|
|
install -m644 src/conf/MANIFEST.MF src/main/resources/META-INF/
|
|
|
|
dh_auto_build -- dist
|