#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
export PYBUILD_NAME=lektor
export PYBUILD_BEFORE_TEST=cp -r {dir}/lektor/translations {dir}/lektor/quickstart-templates {build_dir}/lektor
export PYBUILD_TEST_ARGS=-m 'not requiresinternet'
%:
dh $@ --with python3 --buildsystem=pybuild
# frontend compilation not working
# due to build errors (Module not found: Error: Can't resolve 'react')
#execute_after_dh_auto_install:
# cd frontend && webpack
|