blob: 423c4207b020131b01f6ed9b5839a8ac0fbed5e8 [file] [log] [blame]
Damjan Marionc06eeb02017-04-18 15:26:39 +02001# 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 Varlese34acce22017-10-10 12:23:03 +020014ifneq ($(shell uname),Darwin)
15OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
Marco Varlese34acce22017-10-10 12:23:03 +020016endif
Damjan Marionc06eeb02017-04-18 15:26:39 +020017
18TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz)
19
20BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//)
21VERSION=$(shell echo $(BASENAME) | cut -f2 -d-)
22RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g)
Renato Botelho do Coutoe266ea32017-11-30 15:41:22 -060023BR=$(shell realpath $(CURDIR)/../../build-root)
24RPMBUILD=$(BR)/rpmbuild
Thomas F Herbertb60f4962017-07-19 19:17:15 -040025PC=%
Damjan Marionc06eeb02017-04-18 15:26:39 +020026
Thomas F Herbertb60f4962017-07-19 19:17:15 -040027all: RPM
28
Marco Varleseaa839ca2018-08-21 11:51:19 +020029# SUSE rolling-release (a.k.a. Tumbleweed)
30ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
31SPEC_FILE='vpp-suse.spec'
32# SUSE osleap15
33else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
34SPEC_FILE='vpp-suse.spec'
35# SUSE leap42.x
36else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
Marco Varleseaba730f2017-11-29 16:13:04 +010037SPEC_FILE='vpp-suse.spec'
Marco Varlese34acce22017-10-10 12:23:03 +020038else
Marco Varleseaba730f2017-11-29 16:13:04 +010039SPEC_FILE='vpp.spec'
40endif
41
Renato Botelho do Coutoe266ea32017-11-30 15:41:22 -060042spec:
Damjan Marionc06eeb02017-04-18 15:26:39 +020043 @echo $(TARBALL)
Renato Botelho do Coutoe266ea32017-11-30 15:41:22 -060044 mkdir -p $(RPMBUILD)/{RPMS,SRPMS,BUILD,SOURCES,SPECS}
45 cp $(TARBALL) $(RPMBUILD)/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
46 cp $(SPEC_FILE) $(RPMBUILD)/SPECS
Thomas F Herbertb60f4962017-07-19 19:17:15 -040047
Renato Botelho do Coutoe266ea32017-11-30 15:41:22 -060048srpm: spec
49 rpmbuild -bs \
50 --define "_topdir $(RPMBUILD)" \
Damjan Marionc06eeb02017-04-18 15:26:39 +020051 --define "_version $(VERSION)" \
52 --define "_release $(RELEASE)" \
Renato Botelho do Coutoe266ea32017-11-30 15:41:22 -060053 $(RPMBUILD)/SPECS/$(SPEC_FILE)
54 mv $$(find $(RPMBUILD)/SRPMS -name \*.src.rpm -type f) $(BR)
55
56RPM: spec
57 rpmbuild -bb \
58 --define "_topdir $(RPMBUILD)" \
59 --define "_version $(VERSION)" \
60 --define "_release $(RELEASE)" \
61 $(RPMBUILD)/SPECS/$(SPEC_FILE)
62 mv $$(find $(RPMBUILD)/RPMS -name \*.rpm -type f) $(BR)