#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
export DH_VERBOSE = 1


# see FEATURE AREAS in dpkg-buildflags(1)
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
# package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

DEB_HOST_MULTIARCH  ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)

export altdir = /opt/alt/pdflib-lite

%:
	dh $@ --parallel

override_dh_auto_configure:
	./configure \
	  --prefix=$(altdir)/usr \
	  --exec-prefix=$(altdir)/usr \
	  --bindir=$(altdir)/usr/bin \
	  --datadir=$(altdir)/usr/share \
	  --libdir=$(altdir)/usr/lib/$(DEB_HOST_MULTIARCH) \
	  --includedir=$(altdir)/usr/include

override_dh_auto_install:
	$(MAKE) install DESTDIR=$(CURDIR)/tmp
	rm $(CURDIR)/tmp$(altdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libpdf.*a
	mkdir -p examples/php/examples.php5
	cp -r bind/pdflib/php/*.php \
	  bind/pdflib/php/readme.txt \
	  bind/pdflib/php/examples.php5 \
	  examples/php
	dh_auto_install

override_dh_auto_clean:
	$(RM) libtool pdflib-config config.cache config.log config.status config/mkcommon.inc
