#!/usr/bin/make -f

# block network access during package build (see bug #862039)
export https_proxy = https://127.0.0.1:9/

%:
	dh $@ --buildsystem R

execute_after_dh_install:
	find debian -name "*.R" -exec chmod -x \{\} \;

execute_after_dh_auto_clean:
	rm -f Rplots.pdf
