X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fbuild_rpm%2Fmkspec;fp=ci%2Fbuild_rpm%2Fmkspec;h=4aa5423255f065a277c3094f9717155bca08cacb;hb=7552c26370d38ef5dd182682a0d3bf096661fe0e;hp=0000000000000000000000000000000000000000;hpb=6ec128a4e6a1819881f8db6659d4024aac35ce38;p=kvmfornfv.git diff --git a/ci/build_rpm/mkspec b/ci/build_rpm/mkspec new file mode 100755 index 000000000..4aa542325 --- /dev/null +++ b/ci/build_rpm/mkspec @@ -0,0 +1,44 @@ +#!/bin/sh +# +# Output a simple RPM spec file. +# +# starting to output the spec + +QEMURELEASE=$1 + +__QEMURELEASE=`echo $QEMURELEASE | sed -e "s/-/_/g"` + +echo $srctree +echo "Name: qemu" +echo "Summary: The Linux qemu" +echo "Version: $__QEMURELEASE" +# we need to determine the NEXT version number +# rpm -q will agree +echo "Release: `sh mkversion`" +echo "License: GPLv2+ and LGPLv2+ and BSD" +echo "Group: Development/Tools" +echo "Vendor: The Linux Community" +echo "URL: http://www.qemu.org" +echo "Source: qemu-$__QEMURELEASE.tar.gz" +echo "%description" +echo "%prep" +echo " " +echo "%setup -q" +echo " " +echo "%build" +echo "%_configure" +echo "make" +echo "%install" +echo "rm -rf %{buildroot}" +echo "make install DESTDIR=%{buildroot}" +echo "%clean" +echo "rm -rf %{buildroot}" +echo "%files" +echo "%dir" +echo "/usr/local/share/qemu" +echo "/usr/local/share/locale/*" +echo "%doc" +echo "/usr/local/bin/ivshmem*" +echo "/usr/local/bin/qemu*" +echo "/usr/local/libexec/qemu-bridge-helper" +echo "%changelog"