#!/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') package64 = mingw-9-w64-fancyssl-tools 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_DH_ALWAYS_EXCLUDE := .svn:debian-arch:debian-mingw DEB_SHLIBDEPS_INCLUDE := 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: build-indep #install-indep: 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:: # build cd $(builddir64) && PKG_CONFIG_LIBDIR=$(w64pcdir) $(MAKE) arch=$(arch64) # install rm -rf debian/$(package64) cd $(builddir64) && PKG_CONFIG_LIBDIR=$(w64pcdir) $(MAKE) install-bin arch=$(arch64) DESTDIR=$(PKGROOT)/$(package64) touch install-indep