mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
34 lines
1 KiB
Makefile
Executable file
34 lines
1 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
||
# -*- makefile -*-
|
||
|
||
# Uncomment this to turn on verbose mode.
|
||
#export DH_VERBOSE=1
|
||
|
||
# Get package version
|
||
# dpkg-parsechangelog > 1.17 could use dpkg-parsechangelog --show-field Version
|
||
DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p')
|
||
|
||
# Define temporary debian directory
|
||
TMPDIR = $$(pwd)/debian/yunohost-admin
|
||
|
||
%:
|
||
dh $@
|
||
|
||
override_dh_auto_install:
|
||
# Replace VERSION with current package version to prevent web browser
|
||
# to serve old css/js files
|
||
sed -i 's/VERSION/$(DEBVERS)/g' src/index.html
|
||
|
||
# Run npm/bower/gulp
|
||
# For some unknown reason, the postinstall scripts in package.json cannot be run, and triggers this error :
|
||
# "npm WARN cannot run in wd yunohost-admin@ bower install && gulp build (wd=/build/path)"
|
||
cd src ; npm --progress false --loglevel warn --color false install
|
||
cd src ; node_modules/bower/bin/bower install --allow-root
|
||
cd src ; node_modules/gulp/bin/gulp.js build
|
||
|
||
override_dh_clean:
|
||
dh_clean
|
||
rm -rf src/node_modules
|
||
rm -rf src/bower_components
|
||
rm -rf src/dist
|
||
|