<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to install *.src.rpm ? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431626#M71363</link>
    <description>rpmbuild --rebuild *.src.rpm &lt;BR /&gt;&lt;BR /&gt;New rpm files in the /usr/src/redhat/RPMS/&lt;ARCH&gt; &lt;BR /&gt;&lt;BR /&gt;use rpm -Uvh to install them&lt;/ARCH&gt;</description>
    <pubDate>Mon, 29 Nov 2004 01:07:29 GMT</pubDate>
    <dc:creator>NiCK_76</dc:creator>
    <dc:date>2004-11-29T01:07:29Z</dc:date>
    <item>
      <title>how to install *.src.rpm ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431622#M71359</link>
      <description>Hello Dear Experts&lt;BR /&gt;&lt;BR /&gt;plz le me know how to install *.src.rpm.&lt;BR /&gt;&lt;BR /&gt;I tried following ... but failed&lt;BR /&gt;rpm -Uvh *.src.rpm&lt;BR /&gt;And &lt;BR /&gt;rpm -ivh *.src.rpm&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz&lt;BR /&gt;</description>
      <pubDate>Sun, 28 Nov 2004 06:24:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431622#M71359</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2004-11-28T06:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to install *.src.rpm ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431623#M71360</link>
      <description>use&lt;BR /&gt;rpmbuild --rebuild pakagename &lt;BR /&gt;instead.&lt;BR /&gt;This will place the ready rpm under /usr/src/redhat/RPMS tree.&lt;BR /&gt;Look for it under existing directories -probably noarch..&lt;BR /&gt;Best regards.</description>
      <pubDate>Sun, 28 Nov 2004 06:35:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431623#M71360</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2004-11-28T06:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to install *.src.rpm ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431624#M71361</link>
      <description>Thanks Dear Alexander for prompt reply&lt;BR /&gt;&lt;BR /&gt;plz find the attachement... and le me know whats the prblm.&lt;BR /&gt;&lt;BR /&gt;I tried ... but failed&lt;BR /&gt;# rpmbuild --rebuild /vlock-1.3-2.src.rpm&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;RPM build errors:&lt;BR /&gt;    File not found: /tmp/vlock/usr/man/man1/vlock.1&lt;BR /&gt;&lt;BR /&gt;Thnaks &lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sun, 28 Nov 2004 11:59:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431624#M71361</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2004-11-28T11:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to install *.src.rpm ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431625#M71362</link>
      <description>Hrm.. It looks like the 'spec' file is a bit out-of-touch with the installation.&lt;BR /&gt;&lt;BR /&gt;Right about now, you've no choice but to manually nudge the spec file into line.&lt;BR /&gt;&lt;BR /&gt;Start by 'installing' the source package:&lt;BR /&gt;&lt;BR /&gt;rpm -ivh /vlock-1.3-2.src.rpm&lt;BR /&gt;&lt;BR /&gt;From here you've got two choices.  Fix the 'Makefile' so the file gets installed, or fix the Spec so it doesn't look for it.  I'd suggest the latter unless you like makefiles:&lt;BR /&gt;&lt;BR /&gt;Then modify the associated spec file:&lt;BR /&gt;&lt;BR /&gt;vi /usr/src/redhat/SPECS/vlock.spec&lt;BR /&gt;&lt;BR /&gt;Find the reference to the file 'vlock.1' under the '%files' section, and remove it.&lt;BR /&gt;&lt;BR /&gt;Once done, save and exit (:wq), then use the command:&lt;BR /&gt;&lt;BR /&gt;rpmbuild -ba /usr/src/redhat/SPECS/vlock.spec&lt;BR /&gt;&lt;BR /&gt;It should end up with an RPM in '/usr/src/redhat/RPMS/i386/' for you to install.</description>
      <pubDate>Sun, 28 Nov 2004 18:34:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431625#M71362</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-11-28T18:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to install *.src.rpm ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431626#M71363</link>
      <description>rpmbuild --rebuild *.src.rpm &lt;BR /&gt;&lt;BR /&gt;New rpm files in the /usr/src/redhat/RPMS/&lt;ARCH&gt; &lt;BR /&gt;&lt;BR /&gt;use rpm -Uvh to install them&lt;/ARCH&gt;</description>
      <pubDate>Mon, 29 Nov 2004 01:07:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-src-rpm/m-p/3431626#M71363</guid>
      <dc:creator>NiCK_76</dc:creator>
      <dc:date>2004-11-29T01:07:29Z</dc:date>
    </item>
  </channel>
</rss>

