#!/usr/bin/make -f # # $Id$ # # rules file for creating debian packages # DEB_UPSTREAM_VERSION ?= $(shell dpkg-parsechangelog | sed -rne 's/^Version: ([0-9.]+)[-+].*$$/\1/p') DEB_DH_ALWAYS_EXCLUDE := .svn:debian-arch:debian-mingw package64 = mingw-9-w64-fancypcsc devpackage64 = mingw-9-w64-fancypcsc-dev builddir64 = build/win64/release arch64=x86_64-w64-mingw32 # see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930492 w64pcdir = /usr/x86_64-w64-mingw32/lib/pkgconfig PKGROOT=$(shell pwd)/debian DEB_INSTALL_DOCS_ALL := doc/LICENSE.txt doc/ReadMe.txt %: dh $@ # do not strip anything. # call 'strip' on a mingw lib*.a file causes the ranlib information to # be discarded rendering the libraries useless. override_dh_strip: override_dh_shlibdeps: export DEB_CFLAGS_MAINT_SET = -O2 -Wall export DEB_LDFLAGS_MAINT_SET = #build-indep: common-build-indep #install-indep: common-install-indep INSTALL_PROGRAM = install build-indep:: cd $(builddir64) && PKG_CONFIG_LIBDIR=$(w64pcdir) $(MAKE) arch=$(arch64) touch build-indep clean:: rm -f install-indep build-indep cd $(builddir64) && PKG_CONFIG_LIBDIR=$(w64pcdir) $(MAKE) arch=$(arch64) clean rm -f build-indep rm -f install-indep install-indep:: rm -rf debian/$(package64) debian/$(devpackage64) cd $(builddir64) && PKG_CONFIG_LIBDIR=$(w64pcdir) $(MAKE) install-bin arch=$(arch64) DESTDIR=$(PKGROOT)/$(package64) cd $(builddir64) && PKG_CONFIG_LIBDIR=$(w64pcdir) $(MAKE) install-dev arch=$(arch64) DESTDIR=$(PKGROOT)/$(devpackage64) touch install-indep