1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
LDFLAGS+=-Wl,--as-needed -lwx_gtk2u_adv-3.0
export REPACK_SH=$(CURDIR)/debian/repack.sh
export USE_SOTWOSYMLINKS=1
UPSTEAM_VERSION=$(shell dpkg-parsechangelog 2>/dev/null | sed -ne 's/Version: \([0-9.]\+\)~.*/\1/p')
PKGDOCDIR=$(CURDIR)/debian/wxsqlite3-doc/
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%:
dh $@ --parallel --with autotools_dev
override_dh_auto_configure:
ln -s $(CURDIR)/build30 $(CURDIR)/build
dh_auto_configure -- --with-sqlite3-prefix=/usr
override_dh_auto_build-indep:
cd $(CURDIR)/docs/ && doxygen
override_dh_strip:
dh_strip --dbg-package=wxsqlite3-3.0-dbg
override_dh_installchangelogs:
dh_installchangelogs readme.md
override_dh_auto_install:
dh_auto_install
sed -e "s/@VERSION@/${UPSTREAM_VERSION}/" \
-e "s#@LIBDIR@#lib/${DEB_HOST_MULTIARCH}#" \
debian/wxsqlite3-3.0.pc.in > debian/wxsqlite3-3.0.pc
chmod -x debian/wxsqlite3-3.0.pc
mkdir -p debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig
install -m 0644 debian/wxsqlite3-3.0.pc \
debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig
override_dh_install:
dh_install
ifneq (,$(shell dh_listpackages -i 2>/dev/null))
chmod -x $(PKGDOCDIR)/usr/share/wxsqlite3-doc/html/*
dh_link -pwxsqlite3-doc /usr/share/javascript/jquery/jquery.js \
/usr/share/wxsqlite3-doc/html/jquery.js
endif
override_dh_auto_test-arch:
debian/runtest.sh
get-orig-source:
uscan --force-download
.PHONY: override_dh_auto_configure override_dh_auto_build-indep \
override_dh_install override_dh_strip override_dh_auto_test-arch
|