Backup and restore mutable files to allow multiple builds.

This commit is contained in:
Carlos Maddela
2017-01-05 07:05:26 +11:00
parent f8dc3ae4a9
commit 04ce38ec85
2 changed files with 12 additions and 0 deletions

11
debian/rules vendored
View File

@@ -6,16 +6,27 @@ include /usr/share/dpkg/buildflags.mk
export DEB_CFLAGS_MAINT_APPEND = $(CPPFLAGS) -Wall -Wno-deprecated-declarations -pedantic
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
MUTABLE_FILES := build.h $(wildcard locale/*.po)
%:
dh $@
override_dh_auto_configure:
for f in $(MUTABLE_FILES); do \
cp -an $$f $$f.orig; \
done
dh_auto_configure -- \
--localedir=\$${prefix}/share/locale \
--docdir=\$${prefix}share/doc \
--docsubdir=dvdisaster-doc/html \
--with-embedded-src-path=no
override_dh_clean:
dh_clean -X.orig
for f in $(MUTABLE_FILES); do \
test ! -f $$f.orig || mv -f $$f.orig $$f; \
done
override_dh_auto_build-arch:
make all

1
debian/source/options vendored Normal file
View File

@@ -0,0 +1 @@
no-unapply-patches