#!/usr/bin/make -f

include /usr/share/dpkg/pkg-info.mk

VER=$(DEB_VERSION_UPSTREAM)

%:
	dh  $@ --with elpa

override_dh_auto_build:
	echo "(define-package \"xcite\" \"$(VER)\" \"Exciting cite utility for Emacsen\" '((emacs \"24.1\")))" > xcite-pkg.el
	dh_auto_build

