Difference between revisions of "RPM5"

From CBLFS
Jump to navigationJump to search
(Optional)
(Dependencies)
Line 13: Line 13:
 
=== Recommended ===
 
=== Recommended ===
 
* [[Popt]]
 
* [[Popt]]
 +
=== Optional ===
 +
* [[Lua]]
 
* [[lzma]]
 
* [[lzma]]
 
+
* [[Neon]]
=== Optional ===
 
* [[SELinux]]
 
* [[Python]]
 
 
* [[NSS]]
 
* [[NSS]]
 
* [[OpenSSL]]
 
* [[OpenSSL]]
* [[Neon]]
+
* [[Pcre]]
 +
* [[Python]]
 +
* [[SELinux]]
 
* [[SQLite3]]
 
* [[SQLite3]]
* [[Lua]]
 
* [[Pcre]]
 
  
 
* [[DMalloc]]
 
* [[DMalloc]]

Revision as of 18:03, 23 October 2008

Download Source: http://rpm5.org/files/rpm/rpm-5.1/rpm-5.1.9.tar.gz

Introduction to RPM5

Installwatch is an extremely simple utility that keeps track of created and modified files during the installation of a new program. It's fast and easy to use. It doesn't require a "pre-install" phase because it monitors processes while they run.

Project Homepage: http://asic-linux.com.mx/~izto/checkinstall/installwatch.html

Dependencies

Required

Recommended

Optional

Not-Recommended

Non-Multilib

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib --localstatedir=/var/lib \
    --enable-build-pic --enable-build-pie \
    --disable-build-intlibdep

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
USE_ARCH=32 PKG_CONFIG_PATH=${PKG_CONFIG_PATH32} \
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib --localstatedir=/var/lib \
    --enable-build-pic --enable-build-pie &&
make 

Install the package:

make install

N32

To Do.

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
USE_ARCH=64 PKG_CONFIG_PATH=${PKG_CONFIG_PATH64} \
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib64 --localstatedir=/var/lib \
    --enable-build-pic --enable-build-pie &&
make 

Install the package:

make install