#!/usr/bin/make -f

export DH_ALWAYS_EXCLUDE=CVS:.svn

override_dh_usrlocal:

clean:
	rm -rf target
	dh $@

build:
	mkdir -p target
	wget -O target/geminicl `cat src/gemini-client-url`
	chmod +x target/geminicl
	dh $@

%:
	dh $@
