#!/usr/bin/make -f
BDIR := $(CURDIR)/_build/default

%:
	dh $@ --with ocaml

# upstream's install target is for opam
override_dh_auto_install:

override_dh_install:
	cd $(BDIR) && \
		echo 'directory="+ppx_derivers"' > META && \
		cat META.ppx_derivers >> META
	dh_install
