mirror of
git://git.proxmox.com/git/pve-xtermjs.git
synced 2025-03-13 00:58:40 +03:00
termproxy is now completely written in rust (instead of perl) but it is a drop-in replacement this contains all other necessary changes to the build-system for it to successfully build Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
10 lines
205 B
Makefile
Executable File
10 lines
205 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --buildsystem cargo
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
sed -e 's/@VERSION@/${VERSION}/' src/www/index.html.tpl.in > src/www/index.html.tpl
|
|
rm src/www/index.html.tpl.in
|