aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-plugin/cmake/Modules/Packaging.cmake
diff options
context:
space:
mode:
authorLuca Muscariello <lumuscar+fdio@cisco.com>2019-01-22 17:50:52 +0000
committerGerrit Code Review <gerrit@fd.io>2019-01-22 17:50:52 +0000
commitbed18df840364847e378d1ce2dea2fbace029720 (patch)
treed0cd5b86ba9c159f9e8a32331a82e121bafdb4c5 /hicn-plugin/cmake/Modules/Packaging.cmake
parent471bcdc47dce89394a724e96f7c4bd6f242b6a31 (diff)
parent211b6a8bc6d959a874a43f28d4cda43eae48200d (diff)
Merge "[HICN-3] First version of packaging system based on cmake."
Diffstat (limited to 'hicn-plugin/cmake/Modules/Packaging.cmake')
-rw-r--r--hicn-plugin/cmake/Modules/Packaging.cmake31
1 files changed, 31 insertions, 0 deletions
diff --git a/hicn-plugin/cmake/Modules/Packaging.cmake b/hicn-plugin/cmake/Modules/Packaging.cmake
new file mode 100644
index 000000000..21ba4138d
--- /dev/null
+++ b/hicn-plugin/cmake/Modules/Packaging.cmake
@@ -0,0 +1,31 @@
+# Copyright (c) 2017-2019 Cisco and/or its affiliates.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+######################
+# Packages section
+######################
+
+set(${HICN_PLUGIN}_DESCRIPTION
+ "A high-performance Hybrid ICN forwarder as a plugin to VPP."
+ CACHE STRING "Description for deb/rpm package."
+)
+
+set(${HICN_PLUGIN}_DEB_DEPENDENCIES
+ "libhicn (>= 1.0), vpp (== 19.01-release), vpp-plugins (== 19.01-release)"
+ CACHE STRING "Dependencies for deb/rpm package."
+)
+
+set(${HICN_PLUGIN}_RPM_DEPENDENCIES
+ "libhicn >= 1.0, vpp = 19.01-release, vpp-plugins = 19.01-release"
+ CACHE STRING "Dependencies for deb/rpm package."
+) \ No newline at end of file