#!/usr/bin/make -f include /usr/share/javahelper/java-vars.mk include /usr/share/dpkg/pkg-info.mk export LEIN_HOME=$(CURDIR)/.lein export LEIN_OFFLINE=true NAME=schema %: dh $@ --with javahelper --with maven_repo_helper override_dh_auto_configure: cd debian && ln -sf /usr/share/maven-repo . override_dh_auto_build: lein cljx lein jar # symlink so we don't need a version in debian/*.poms cd target && ln -sf $(NAME)-$(DEB_VERSION_UPSTREAM).jar $(NAME).jar # This is a temporary measure not to create breakage. We eventually need to # get rid of the old name. cd target && ln -sf $(NAME)-$(DEB_VERSION_UPSTREAM).jar prismatic-schema.jar override_dh_auto_test: lein test override_jh_installlibs: jh_installlibs target/$(NAME).jar # This is a temporary measure not to create breakage. We eventually need to # get rid of the old name. jh_installlibs target/prismatic-schema.jar override_dh_clean: rm -f debian/maven-repo rm -Rf target dh_clean