api: vat2 and json autogeneration for api messages
[vpp.git] / extras / rpm / Makefile
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
14 ifneq ($(shell uname),Darwin)
15 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
16 endif
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)
23 BR=$(shell realpath $(CURDIR)/../../build-root)
24 RPMBUILD=$(BR)/rpmbuild
25 PC=%
26
27 all: RPM
28
29 SPEC_FILE='vpp.spec'
30
31 spec:
32         @echo $(TARBALL)
33         mkdir -p $(RPMBUILD)/RPMS $(RPMBUILD)/SRPMS $(RPMBUILD)/BUILD \
34              $(RPMBUILD)/SOURCES $(RPMBUILD)/SPECS
35         cp $(TARBALL) $(RPMBUILD)/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
36         cp $(SPEC_FILE) $(RPMBUILD)/SPECS
37
38 srpm: spec
39         rpmbuild -bs \
40           --define "_topdir $(RPMBUILD)" \
41           --define "_version $(VERSION)" \
42           --define "_release $(RELEASE)" \
43           $(RPMBUILD)/SPECS/$(SPEC_FILE)
44         mv $$(find $(RPMBUILD)/SRPMS -name \*.src.rpm -type f) $(BR)
45
46 RPM: spec
47         rpmbuild -bb \
48           --define "_topdir $(RPMBUILD)" \
49           --define "_version $(VERSION)" \
50           --define "_release $(RELEASE)" \
51           $(RPMBUILD)/SPECS/$(SPEC_FILE)
52         mv $$(find $(RPMBUILD)/RPMS -name \*.rpm -type f) $(BR)