#!/usr/bin/make -f
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.

package := iselect

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

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp:
	dh_testdir
	mkdir -p debian/backup
	mv -v iselect.1 config_ac.h.in configure debian/backup/
	dh_autoreconf
	./configure --prefix=/usr
	$(MAKE) 
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	dh_autoreconf_clean
	rm -f build-stamp
	[ ! -f Makefile ] || $(MAKE) distclean
	-mv -vf debian/backup/* ./
	dh_clean

# Build architecture-independent files here.
binary-indep: build
# There are no architecture-independent files to be uploaded
# generated by this package.  If there were any they would be
# made here.

# Build architecture-dependent files here.
binary-arch: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the files into debian/$(package)
	$(MAKE) install prefix=`pwd`/debian/$(package)/usr mandir='$${prefix}/share/man'
	install -m 755 debian/screen-ir debian/$(package)/usr/bin/
	dh_installman debian/screen-ir.1

	dh_installdocs README
	dh_installchangelogs ChangeLog
ifeq "$(findstring nostrip,$(DEB_BUILD_OPTIONS))" ""
	dh_strip
endif
	dh_compress

	# We don't want to compress the perl scripts.  :-)
	dh_installexamples example/*

	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary
