blob: 5d965f95c21fea30bcd8ad4bbb1d514dcdf098ff [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')
16OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
17endif
Damjan Marionc06eeb02017-04-18 15:26:39 +020018
19TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz)
20
21BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//)
22VERSION=$(shell echo $(BASENAME) | cut -f2 -d-)
23RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g)
Thomas F Herbertb60f4962017-07-19 19:17:15 -040024PC=%
Damjan Marionc06eeb02017-04-18 15:26:39 +020025
Thomas F Herbertb60f4962017-07-19 19:17:15 -040026all: RPM
27
Marco Varlese34acce22017-10-10 12:23:03 +020028ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
Marco Varleseaba730f2017-11-29 16:13:04 +010029TOPDIR=$(CURDIR)
30SPEC_FILE='vpp-suse.spec'
Marco Varlese34acce22017-10-10 12:23:03 +020031else
Marco Varleseaba730f2017-11-29 16:13:04 +010032TOPDIR=$(PWD)
33SPEC_FILE='vpp.spec'
34endif
35
Thomas F Herbertb60f4962017-07-19 19:17:15 -040036srpm:
Damjan Marionc06eeb02017-04-18 15:26:39 +020037 @echo $(TARBALL)
Thomas F Herbertb60f4962017-07-19 19:17:15 -040038 mkdir -p rpmbuild/{RPMS,SRPMS,BUILD,SOURCES,SPECS}
39 cp $(TARBALL) rpmbuild/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
Marco Varleseaba730f2017-11-29 16:13:04 +010040 cp $(SPEC_FILE) rpmbuild/SOURCES
41 sed -i '1s/^/$(PC)define _version $(VERSION)\n/' rpmbuild/SOURCES/$(SPEC_FILE)
42 sed -i '1s/^/$(PC)define _release $(RELEASE)\n/' rpmbuild/SOURCES/$(SPEC_FILE)
43 sed -i '/define _topdir/d' rpmbuild/SOURCES/$(SPEC_FILE)
Thomas F Herbertb60f4962017-07-19 19:17:15 -040044 rpmbuild -bs \
45 --define "_topdir rpmbuild" \
Marco Varleseaba730f2017-11-29 16:13:04 +010046 rpmbuild/SOURCES/$(SPEC_FILE)
Thomas F Herbertb60f4962017-07-19 19:17:15 -040047 mv $$(find rpmbuild/SRPMS -name \*.src.rpm -type f) .
48
49RPM:
50 @echo $(TARBALL)
51 mkdir -p RPMS SOURCES
52 cp $(TARBALL) SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
Damjan Marionc06eeb02017-04-18 15:26:39 +020053 rpmbuild -bb \
Marco Varleseaba730f2017-11-29 16:13:04 +010054 --define "_topdir $(TOPDIR)" \
Damjan Marionc06eeb02017-04-18 15:26:39 +020055 --define "_version $(VERSION)" \
56 --define "_release $(RELEASE)" \
Marco Varleseaba730f2017-11-29 16:13:04 +010057 $(SPEC_FILE)
Damjan Marionc06eeb02017-04-18 15:26:39 +020058 mv $$(find RPMS -name \*.rpm -type f) .