mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
e2d54225da
This reverts commit 6ba9442940
.
26 lines
713 B
Makefile
Executable file
26 lines
713 B
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_build:
|
||
/usr/bin/npm install -g npm@6
|
||
cd app ; PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /usr/local/bin/npm --progress false ci
|
||
cd app ; PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /usr/local/bin/npm run build
|
||
|
||
|
||
override_dh_clean:
|
||
dh_clean
|
||
rm -rf app/node_modules
|
||
rm -rf app/dist
|