VOM: mroutes
[vpp.git] / extras / rpm / Makefile
index 1dcbb20..423c420 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+ifneq ($(shell uname),Darwin)
+OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
+endif
 
 TARBALL=$(shell realpath ../../build-root/vpp-latest.tar.xz)
 
 BASENAME=$(shell basename $(TARBALL) | sed -e s/.tar.\*//)
 VERSION=$(shell echo $(BASENAME) | cut -f2 -d-)
 RELEASE=$(shell echo $(BASENAME) | cut -f3- -d- | sed -e s/-/_/g)
+BR=$(shell realpath $(CURDIR)/../../build-root)
+RPMBUILD=$(BR)/rpmbuild
+PC=%
 
-all:
+all: RPM
+
+# SUSE rolling-release (a.k.a. Tumbleweed)
+ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
+SPEC_FILE='vpp-suse.spec'
+# SUSE osleap15
+else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
+SPEC_FILE='vpp-suse.spec'
+# SUSE leap42.x
+else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
+SPEC_FILE='vpp-suse.spec'
+else
+SPEC_FILE='vpp.spec'
+endif
+
+spec:
        @echo $(TARBALL)
-       mkdir -p SOURCES RPMS
-       cp $(TARBALL) SOURCES/vpp-latest.tar.xz
+       mkdir -p $(RPMBUILD)/{RPMS,SRPMS,BUILD,SOURCES,SPECS}
+       cp $(TARBALL) $(RPMBUILD)/SOURCES/vpp-$(VERSION)-$(RELEASE).tar.xz
+       cp $(SPEC_FILE) $(RPMBUILD)/SPECS
+
+srpm: spec
+       rpmbuild -bs \
+         --define "_topdir $(RPMBUILD)" \
+         --define "_version $(VERSION)" \
+         --define "_release $(RELEASE)" \
+         $(RPMBUILD)/SPECS/$(SPEC_FILE)
+       mv $$(find $(RPMBUILD)/SRPMS -name \*.src.rpm -type f) $(BR)
+
+RPM: spec
        rpmbuild -bb \
-         --define "_topdir $(PWD)" \
+         --define "_topdir $(RPMBUILD)" \
          --define "_version $(VERSION)" \
          --define "_release $(RELEASE)" \
-         vpp.spec
-       mv $$(find RPMS -name \*.rpm -type f) .
+         $(RPMBUILD)/SPECS/$(SPEC_FILE)
+       mv $$(find $(RPMBUILD)/RPMS -name \*.rpm -type f) $(BR)