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

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

DEBPKGNAME     := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')

%:
	dh $@ --with python2

override_dh_install:
	dh_install
	mkdir -p debian/$(DEBPKGNAME)/usr/share/$(DEBPKGNAME)
	cp -a plasmid debian/$(DEBPKGNAME)/usr/share/$(DEBPKGNAME)/plasmid.py
