yunohost-admin/debian/rules
2020-07-27 20:22:15 +02:00

27 lines
615 B
Makefile
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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_build:
# Run npm/gulp
#cd src ; npm ci --progress false --loglevel warn --color false
cd src ; node_modules/gulp/bin/gulp.js build
rm -rf src/node_modules
override_dh_clean:
dh_clean
#rm -rf src/node_modules
rm -rf src/dist