#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export HOME=/tmp
export NODE_PATH=node_modules

%:
	dh $@

override_dh_auto_build:
	dh_auto_build
	npm install regexpu-core
	babel src -d lib

#override_dh_auto_test:

override_dh_auto_clean:
	rm -rf node_modules
	rm -rf lib
