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
|
export DEB_BUILD_MAINT_OPTIONS=hardening=-pie,+fortify
export DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@
override_dh_auto_configure:
cbp2make -in wxWebcamDB.cbp -unix -out Makefile -targets UX_Release
override_dh_auto_build:
$(MAKE) CFLAGS='-g -DNDEBUG'
VERSION=1.8.1
get-orig-source:
tar --exclude bin --exclude doc --exclude .git -cJvf ../wxAstroCapture_$(VERSION)+git$(shell date +"%Y%m%d")+dfsg.tar.xz wxAstroCapture-$(VERSION)
rm -rf ../wxAstroCapture-$(VERSION)
mv wxAstroCapture-$(VERSION) ..
|