blob: a5a0ffe58270d2123aa8dbcdaf0098ede35b4fe2 [file] [log] [blame]
Damjan Marion4d2f86a2019-01-18 13:28:22 +01001# Copyright (c) 2019 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14get_cmake_property(VPP_COMPONENTS COMPONENTS)
15string(REPLACE ";" " " VPP_COMPONENTS "${VPP_COMPONENTS}")
16
17execute_process(
18 COMMAND date -R
19 OUTPUT_VARIABLE TIMESTAMP
20 OUTPUT_STRIP_TRAILING_WHITESPACE
21)
22
Damjan Mariona4164932020-05-12 12:22:18 +020023# parse /etc/os-release
24file(READ "/etc/os-release" os_release)
25string(REPLACE "\n" ";" os_release ${os_release})
26foreach(l ${os_release})
27 string(REPLACE "=" ";" l ${l})
28 list(GET l 0 _name)
29 list(GET l 1 _value)
30 string(REPLACE "\"" "" _value ${_value})
31 set(OS_${_name} ${_value})
32endforeach()
33
34if (OS_ID STREQUAL "ubuntu" AND OS_VERSION_ID VERSION_LESS 20.04)
35 set(VPP_DEB_BUILD_DEPENDS "python-all, python3-all, python3-setuptools")
36 set(VPP_DEB_WITH_PYTHON2 "yes")
37else()
38 set(VPP_DEB_BUILD_DEPENDS "python3-all, python3-setuptools")
39 set(VPP_DEB_WITH_PYTHON2 "no")
40endif()
41
42foreach(f rules changelog control)
Damjan Marion4d2f86a2019-01-18 13:28:22 +010043 configure_file(
44 ${CMAKE_CURRENT_SOURCE_DIR}/debian/${f}.in
45 ${CMAKE_BINARY_DIR}/debian/${f}
Damjan Mariona4164932020-05-12 12:22:18 +020046 @ONLY
Damjan Marion4d2f86a2019-01-18 13:28:22 +010047 )
48endforeach()
49
Damjan Mariona4164932020-05-12 12:22:18 +020050foreach(f copyright vpp.preinst vpp.postrm vpp.postinst vpp.service)
Damjan Marion4d2f86a2019-01-18 13:28:22 +010051 file(COPY
52 ${CMAKE_CURRENT_SOURCE_DIR}/debian/${f}
53 DESTINATION ${CMAKE_BINARY_DIR}/debian
54 )
55endforeach()
56
57file(WRITE ${CMAKE_BINARY_DIR}/debian/compat "9\n")
58
59add_custom_target(package-deb
60 COMMENT "Building .deb packages..."
61 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
62 COMMAND "dpkg-buildpackage" "-us" "-uc" "-b"
Damjan Marion7ec2fe22019-01-22 09:10:16 +010063 USES_TERMINAL
Damjan Marion4d2f86a2019-01-18 13:28:22 +010064)