Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 1 | # Copyright (c) 2017 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 | |
Marco Varlese | 34acce2 | 2017-10-10 12:23:03 +0200 | [diff] [blame] | 14 | ifneq ($(shell uname),Darwin) |
| 15 | OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
Marco Varlese | 34acce2 | 2017-10-10 12:23:03 +0200 | [diff] [blame] | 16 | endif |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 17 | |
| 18 | TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz) |
| 19 | |
| 20 | BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//) |
| 21 | VERSION=$(shell echo $(BASENAME) | cut -f2 -d-) |
| 22 | RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g) |
Renato Botelho do Couto | e266ea3 | 2017-11-30 15:41:22 -0600 | [diff] [blame] | 23 | BR=$(shell realpath $(CURDIR)/../../build-root) |
| 24 | RPMBUILD=$(BR)/rpmbuild |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 25 | PC=% |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 26 | |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 27 | all: RPM |
| 28 | |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 29 | # SUSE osleap15 |
| 30 | ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID)) |
| 31 | SRC_SPEC_DIR="opensuse" |
| 32 | else |
| 33 | SRC_SPEC_DIR="." |
| 34 | endif |
| 35 | |
Marco Varlese | aba730f | 2017-11-29 16:13:04 +0100 | [diff] [blame] | 36 | SPEC_FILE='vpp.spec' |
Marco Varlese | aba730f | 2017-11-29 16:13:04 +0100 | [diff] [blame] | 37 | |
Renato Botelho do Couto | e266ea3 | 2017-11-30 15:41:22 -0600 | [diff] [blame] | 38 | spec: |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 39 | @echo $(TARBALL) |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 40 | mkdir -p $(RPMBUILD)/RPMS $(RPMBUILD)/SRPMS $(RPMBUILD)/BUILD \ |
| 41 | $(RPMBUILD)/SOURCES $(RPMBUILD)/SPECS |
Renato Botelho do Couto | e266ea3 | 2017-11-30 15:41:22 -0600 | [diff] [blame] | 42 | cp $(TARBALL) $(RPMBUILD)/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 43 | cp $(SRC_SPEC_DIR)/$(SPEC_FILE) $(RPMBUILD)/SPECS |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 44 | |
Renato Botelho do Couto | e266ea3 | 2017-11-30 15:41:22 -0600 | [diff] [blame] | 45 | srpm: spec |
| 46 | rpmbuild -bs \ |
| 47 | --define "_topdir $(RPMBUILD)" \ |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 48 | --define "_version $(VERSION)" \ |
| 49 | --define "_release $(RELEASE)" \ |
Renato Botelho do Couto | e266ea3 | 2017-11-30 15:41:22 -0600 | [diff] [blame] | 50 | $(RPMBUILD)/SPECS/$(SPEC_FILE) |
| 51 | mv $$(find $(RPMBUILD)/SRPMS -name \*.src.rpm -type f) $(BR) |
| 52 | |
| 53 | RPM: spec |
| 54 | rpmbuild -bb \ |
| 55 | --define "_topdir $(RPMBUILD)" \ |
| 56 | --define "_version $(VERSION)" \ |
| 57 | --define "_release $(RELEASE)" \ |
| 58 | $(RPMBUILD)/SPECS/$(SPEC_FILE) |
| 59 | mv $$(find $(RPMBUILD)/RPMS -name \*.rpm -type f) $(BR) |