From f7dc615dd4c21d11a5d448f79492b224494d9aa7 Mon Sep 17 00:00:00 2001 From: alarig Date: Thu, 24 Jan 2019 21:14:26 +0100 Subject: [PATCH] Add debian building rules --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 11 +++++++++++ debian/copyright | 0 debian/files | 1 + debian/rules | 12 ++++++++++++ debian/source/format | 1 + 7 files changed, 31 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/files create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5a2d071 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +proxmox-routing (0.1-1) UNRELEASED; urgency=medium + + * Initial release. (Closes: #XXXXXX) + + -- Thu, 24 Jan 2019 19:09:24 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5cd0c54 --- /dev/null +++ b/debian/control @@ -0,0 +1,11 @@ +Source: proxmox-routing +Maintainer: Alarig Le Lay +Section: net +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 9) + +Package: proxmox-routing +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, curl, iproute2, ipv6calc, jq, python3-scapy +Description: Make VM on proxmox routed diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..e69de29 diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..1c559ef --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +proxmox-routing_0.1-1_all.deb net optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b4ecae4 --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_install: + $(MAKE) DESTDIR=$$(pwd)/debian/proxmox-routing install + +override_dh_auto_build: + @ + +override_dh_usrlocal: + @ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)