Rpm

From Attie's Wiki
(Difference between revisions)
Jump to: navigation, search
m
m (List installed packages)
 
(4 intermediate revisions by one user not shown)
Line 1: Line 1:
 +
==Manual Management==
 +
===Install===
 +
<source lang="bash">
 +
rpm [--nodeps] -i <rpmfile>
 +
</source>
 +
 +
===Uninstall===
 +
<source lang="bash">
 +
rpm -e <rpmpackage>
 +
</source>
 +
 +
===Extract without Installing===
 +
<source lang="bash">
 +
rpm2cpio myrpmfile.rpm | cpio -idmv
 +
</source>
 +
 +
===List installed packages===
 +
<source lang="bash">
 +
rpm -qa
 +
</source>
 +
 +
===List files inside RPM===
 +
<source lang="bash">
 +
rpm -qpl ${RPM_FILE}
 +
</source>
 +
 
==Building an RPM package==
 
==Building an RPM package==
 
Create the following directory structure:
 
Create the following directory structure:
Line 13: Line 39:
 
[http://www.rpm.org/max-rpm/s1-rpm-inside-macros.html This] is helpful for the <code>%prep</code> section macros.
 
[http://www.rpm.org/max-rpm/s1-rpm-inside-macros.html This] is helpful for the <code>%prep</code> section macros.
 
<source lang="text">
 
<source lang="text">
Summary: Test library
 
 
Name: mylib
 
Name: mylib
Version: 1.0.1
+
Summary: Test library
 +
%define version 1.0.1
 
Release: 1
 
Release: 1
 +
Source: mylib-%{version}.tgz
 +
 +
Version: %{version}
 
License: LGPLv3
 
License: LGPLv3
 
#BuildRequires: make, gcc, binutils, coreutils, gzip
 
#BuildRequires: make, gcc, binutils, coreutils, gzip
 
Group: System/Libraries
 
Group: System/Libraries
Source: mylib-1.0.1.tgz
 
  
 
BuildRoot: /ver/tmp/${name}-buildroot
 
BuildRoot: /ver/tmp/${name}-buildroot
Line 45: Line 73:
 
%files
 
%files
 
/usr/lib/libmy.a
 
/usr/lib/libmy.a
/usr/lib/libmy.a.1.0.1
+
/usr/lib/libmy.a.%{version}
 
/usr/lib/libmy.so
 
/usr/lib/libmy.so
/usr/lib/libmy.so.1.0.1
+
/usr/lib/libmy.so.%{version}
/usr/lib/libmy.so.1.0.1.dbg
+
/usr/lib/libmy.so.%{version}.dbg
 
/usr/include/my.h
 
/usr/include/my.h
  

Latest revision as of 11:58, 13 May 2014

Contents

[edit] Manual Management

[edit] Install

rpm [--nodeps] -i <rpmfile>

[edit] Uninstall

rpm -e <rpmpackage>

[edit] Extract without Installing

rpm2cpio myrpmfile.rpm | cpio -idmv

[edit] List installed packages

rpm -qa

[edit] List files inside RPM

rpm -qpl ${RPM_FILE}

[edit] Building an RPM package

Create the following directory structure:

mkdir -p ~/rpmbuild/SOURCES ~/rpmbuildrpm/SPECS

Create a tar file containing the source code, named like so: <packagename>-<version>.tgz:

tar -cavf ~/rpmbuild/SOURCES/mylib-1.0.1.tgz --transform='s#^#mylib-1.0.1/#' *.c *.h makefile

Create a *.spec file using the following template, and store it in ~/rpmbuild/SPECS/mylib.spec: This is helpful for the %prep section macros.

Name: mylib
Summary: Test library
%define version 1.0.1
Release: 1
Source: mylib-%{version}.tgz
 
Version: %{version}
License: LGPLv3
#BuildRequires: make, gcc, binutils, coreutils, gzip
Group: System/Libraries
 
BuildRoot: /ver/tmp/${name}-buildroot
 
%description
Test library
 
%prep
%setup -q
 
%build
make configure
make
 
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/include
mkdir -p $RPM_BUILD_ROOT/usr/lib
SYS_ROOT=$RPM_BUILD_ROOT make install
 
%clean
rm -rf $RPM_BUILD_ROOT
 
%files
/usr/lib/libmy.a
/usr/lib/libmy.a.%{version}
/usr/lib/libmy.so
/usr/lib/libmy.so.%{version}
/usr/lib/libmy.so.%{version}.dbg
/usr/include/my.h
 
%changelog
* Wed May 30 2012 Attie Grande <attie@attie.co.uk>
- created RPM build infrastructure

Build the RPM:

cd ~/rpmbuild
rpmbuild -ba SPECS/mylib.spec

[edit] Convert *.rpm to *.deb

$ sudo apt-get install alien
$ sudo alien -k mylib-1.0.1-1.x86_64.rpm
$ ls
mylib-1.0.1-1.x86_64.rpm mylib_1.0.1-1_amd64.deb

And install...

sudo dpkg -i mylib_10.1-1_amd64.deb
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox