blob: 534e4d43f997736d890319a2b9ddc282d3348510 [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
14
15TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz)
16
17BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//)
18VERSION=$(shell echo $(BASENAME) | cut -f2 -d-)
19RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g)
Thomas F Herbertb60f4962017-07-19 19:17:15 -040020PC=%
Damjan Marionc06eeb02017-04-18 15:26:39 +020021
Thomas F Herbertb60f4962017-07-19 19:17:15 -040022all: RPM
23
24srpm:
Damjan Marionc06eeb02017-04-18 15:26:39 +020025 @echo $(TARBALL)
Thomas F Herbertb60f4962017-07-19 19:17:15 -040026 mkdir -p rpmbuild/{RPMS,SRPMS,BUILD,SOURCES,SPECS}
27 cp $(TARBALL) rpmbuild/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
28 cp vpp.spec rpmbuild/SOURCES
29 sed -i '1s/^/$(PC)define _version $(VERSION)\n/' rpmbuild/SOURCES/vpp.spec
30 sed -i '1s/^/$(PC)define _release $(RELEASE)\n/' rpmbuild/SOURCES/vpp.spec
31 sed -i '/define _topdir/d' rpmbuild/SOURCES/vpp.spec
32 rpmbuild -bs \
33 --define "_topdir rpmbuild" \
34 rpmbuild/SOURCES/vpp.spec
35 mv $$(find rpmbuild/SRPMS -name \*.src.rpm -type f) .
36
37RPM:
38 @echo $(TARBALL)
39 mkdir -p RPMS SOURCES
40 cp $(TARBALL) SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
Damjan Marionc06eeb02017-04-18 15:26:39 +020041 rpmbuild -bb \
42 --define "_topdir $(PWD)" \
43 --define "_version $(VERSION)" \
44 --define "_release $(RELEASE)" \
45 vpp.spec
46 mv $$(find RPMS -name \*.rpm -type f) .