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 | |
| 14 | |
| 15 | TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz) |
| 16 | |
| 17 | BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//) |
| 18 | VERSION=$(shell echo $(BASENAME) | cut -f2 -d-) |
| 19 | RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g) |
| 20 | |
| 21 | all: |
| 22 | @echo $(TARBALL) |
| 23 | mkdir -p SOURCES RPMS |
| 24 | cp $(TARBALL) SOURCES/vpp-latest.tar.xz |
| 25 | rpmbuild -bb \ |
| 26 | --define "_topdir $(PWD)" \ |
| 27 | --define "_version $(VERSION)" \ |
| 28 | --define "_release $(RELEASE)" \ |
| 29 | vpp.spec |
| 30 | mv $$(find RPMS -name \*.rpm -type f) . |