2015-01-31 21:24:58 +01:00
|
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
2015-08-31 12:17:55 +02:00
|
|
|
|
# Get package version
|
|
|
|
|
# dpkg-parsechangelog > 1.17 could use dpkg-parsechangelog --show-field Version
|
|
|
|
|
DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p')
|
|
|
|
|
|
2015-01-31 21:24:58 +01:00
|
|
|
|
%:
|
|
|
|
|
dh $@
|
2015-08-31 12:17:55 +02:00
|
|
|
|
|
|
|
|
|
override_dh_install:
|
|
|
|
|
# Replace VERSION with current package version to prevent web browser
|
|
|
|
|
# to serve old css/js files
|
2015-09-02 10:23:23 +02:00
|
|
|
|
sed -i 's/VERSION/$(DEBVERS)/g' src/index.html
|
2015-08-31 12:17:55 +02:00
|
|
|
|
dh_install
|