blob: d6d26c5c5b44f0ba5110afc7034a9da2db297372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
DIR := debian/vyos-1x
VYOS_SBIN_DIR := opt/vyatta/sbin/
VYOS_CFG_TMPL_DIR := /opt/vyatta/share/vyatta-cfg/templates
%:
dh $@ --with python3, --with quilt
override_dh_auto_build:
make
override_dh_auto_install:
dh_install -pvyos-1x
cd python; python3 setup.py install --install-layout=deb --root ../$(DIR); cd ..
mkdir -p $(DIR)/$(VYOS_SBIN_DIR)
cp -r src/conf-mode/* $(DIR)/$(VYOS_SBIN_DIR)
mkdir -p $(DIR)/$(VYOS_CFG_TMPL_DIR)
cp -r templates/* $(DIR)/$(VYOS_CFG_TMPL_DIR)
|