Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | # Copyright (c) 2015 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 | |
| 14 | # Pick up per-platform makefile fragments |
| 15 | $(foreach d,$(SOURCE_PATH_BUILD_DATA_DIRS), \ |
| 16 | $(eval -include $(d)/platforms/*.mk)) |
| 17 | |
| 18 | .PHONY: install-deb |
| 19 | install-deb: $(patsubst %,%-find-source,$(ROOT_PACKAGES)) |
| 20 | @$(BUILD_ENV) ; \ |
| 21 | set -eu$(BUILD_DEBUG) ; \ |
| 22 | $(MAKE) -C $(MU_BUILD_ROOT_DIR) \ |
| 23 | $(patsubst %,%-install, \ |
| 24 | $(ROOT_PACKAGES)) || exit 1; \ |
| 25 | \ |
| 26 | : generate file manifests ; \ |
| 27 | find $(INSTALL_PREFIX)$(ARCH)/*/bin -type f -print \ |
Damjan Marion | cb034b9 | 2016-12-28 18:38:59 +0100 | [diff] [blame] | 28 | | sed -e 's:.*:../& /usr/bin:' | grep -v vppapigen \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | > deb/debian/vpp.install ; \ |
Dave Barach | 1c11311 | 2016-02-03 12:59:38 -0500 | [diff] [blame] | 30 | \ |
Ole Troan | f14e3bf | 2016-12-01 21:49:03 +0100 | [diff] [blame] | 31 | : core api definitions ; \ |
| 32 | ./scripts/find-api-core-contents $(INSTALL_PREFIX)$(ARCH) \ |
| 33 | deb/debian/vpp.install ; \ |
| 34 | \ |
Dave Barach | 1c11311 | 2016-02-03 12:59:38 -0500 | [diff] [blame] | 35 | : need symbolic links in the lib pkg ; \ |
| 36 | find $(INSTALL_PREFIX)$(ARCH)/*/lib* \( -type f -o -type l \) \ |
| 37 | -print | egrep -e '*\.so\.*\.*\.*' \ |
Damjan Marion | ad476c7 | 2016-07-13 13:42:33 +0200 | [diff] [blame] | 38 | | grep -v plugins\/ \ |
Nitin Saxena | 9cfb117 | 2017-12-27 10:31:41 +0000 | [diff] [blame] | 39 | | sed -e 's:.*:../& /usr/lib/$(MACHINE)-linux-gnu:' \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | > deb/debian/vpp-lib.install ; \ |
| 41 | \ |
Ole Troan | f14e3bf | 2016-12-01 21:49:03 +0100 | [diff] [blame] | 42 | : vnet api definitions ; \ |
| 43 | ./scripts/find-api-lib-contents $(INSTALL_PREFIX)$(ARCH) \ |
| 44 | deb/debian/vpp-lib.install ; \ |
| 45 | \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | : dev package ; \ |
| 47 | ./scripts/find-dev-contents $(INSTALL_PREFIX)$(ARCH) \ |
| 48 | deb/debian/vpp-dev.install ; \ |
| 49 | \ |
Damjan Marion | ad476c7 | 2016-07-13 13:42:33 +0200 | [diff] [blame] | 50 | : plugins package ; \ |
| 51 | ./scripts/find-plugins-contents $(INSTALL_PREFIX)$(ARCH) \ |
| 52 | deb/debian/vpp-plugins.install ; \ |
| 53 | \ |
Damjan Marion | cb034b9 | 2016-12-28 18:38:59 +0100 | [diff] [blame] | 54 | : vpp-api-lua package ; \ |
| 55 | ./scripts/find-vpp-api-lua-contents $(INSTALL_PREFIX)$(ARCH) \ |
| 56 | deb/debian/vpp-api-lua.install ; \ |
| 57 | \ |
| 58 | : vpp-api-java package ; \ |
| 59 | ./scripts/find-vpp-api-java-contents $(INSTALL_PREFIX)$(ARCH) \ |
| 60 | deb/debian/vpp-api-java.install ; \ |
| 61 | \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | : bin package needs startup config ; \ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 63 | echo ../../src/vpp/conf/startup.conf /etc/vpp \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | >> deb/debian/vpp.install ; \ |
| 65 | \ |
| 66 | : and sysctl config ; \ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 67 | echo ../../src/vpp/conf/80-vpp.conf /etc/sysctl.d \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | >> deb/debian/vpp.install ; \ |
| 69 | \ |
Padraig Connolly | 69915cb | 2017-01-10 17:10:39 +0000 | [diff] [blame] | 70 | : bash completion for vppctl ; \ |
| 71 | echo ../../src/scripts/vppctl_completion /etc/bash_completion.d \ |
| 72 | >> deb/debian/vpp.install ; \ |
| 73 | \ |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 74 | : add log directory ; \ |
| 75 | echo /var/log/vpp/ \ |
| 76 | >> deb/debian/vpp.dirs ; \ |
| 77 | \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | : dev package needs a couple of additions ; \ |
Damjan Marion | 0be5ec3 | 2016-12-28 17:51:56 +0100 | [diff] [blame] | 79 | echo ../$(INSTALL_PREFIX)$(ARCH)/vpp/bin/vppapigen /usr/bin \ |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 80 | >> deb/debian/vpp-dev.install ; \ |
Paul Vinciguerra | 9ce6a21 | 2018-09-12 13:40:13 -0700 | [diff] [blame] | 81 | echo ../$(INSTALL_PREFIX)$(ARCH)/vpp/share/vpp/vppapigen_c.py /usr/share/vpp \ |
Ole Troan | 9d42087 | 2017-10-12 13:06:35 +0200 | [diff] [blame] | 82 | >> deb/debian/vpp-dev.install ; \ |
Paul Vinciguerra | 9ce6a21 | 2018-09-12 13:40:13 -0700 | [diff] [blame] | 83 | echo ../$(INSTALL_PREFIX)$(ARCH)/vpp/share/vpp/vppapigen_json.py /usr/share/vpp \ |
Ole Troan | 9d42087 | 2017-10-12 13:06:35 +0200 | [diff] [blame] | 84 | >> deb/debian/vpp-dev.install ; \ |
Damjan Marion | cc4a5e8 | 2018-07-30 16:10:14 +0200 | [diff] [blame] | 85 | echo ../../extras/japi/java/jvpp/gen/jvpp_gen.py /usr/bin \ |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 86 | >> deb/debian/vpp-dev.install ; \ |
Damjan Marion | cb034b9 | 2016-12-28 18:38:59 +0100 | [diff] [blame] | 87 | for i in $$(ls ../src/vpp-api/java/jvpp/gen/jvppgen/*.py); do \ |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 88 | echo ../$${i} /usr/lib/python2.7/dist-packages/jvppgen \ |
| 89 | >> deb/debian/vpp-dev.install; \ |
| 90 | done; \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | \ |
| 92 | : generate changelog; \ |
| 93 | ./scripts/generate-deb-changelog \ |
| 94 | \ |
| 95 | : Go fabricate the actual Debian packages ; \ |
| 96 | ( \ |
| 97 | cd deb && \ |
| 98 | dpkg-buildpackage -us -uc -b \ |
| 99 | ) |
| 100 | |