#!/usr/bin/make -f

pkg             := photo
debpkg          := cl-$(pkg)

clc-source      := usr/share/common-lisp/source
clc-systems     := usr/share/common-lisp/systems
clc-files       := $(clc-source)/$(debpkg)
source-files    := $(wildcard *.lisp)

%:
	dh $@ --with lisp

override_dh_auto_build:
	# pass

override_dh_install:
	dh_install $(debpkg).asd $(clc-files)
	dh_install *.lisp $(clc-files)
