RPM5: Difference between revisions
From CBLFS
Jump to navigationJump to search
New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: |http://rpm5.org/files/rpm/rpm-{{RPM5-Version2}}/rpm-{{RPM5-Version}}.tar.gz |} {{Package-Introduction|Insta... |
No edit summary |
||
| (6 intermediate revisions by 3 users not shown) | |||
| Line 5: | Line 5: | ||
|} | |} | ||
{{Package-Introduction| | {{Package-Introduction|RPM is a command-line package management system capable of installing, uninstalling, verifying, querying, and updating Unix software packages.|http://rpm5.org/}} | ||
== Dependencies == | == Dependencies == | ||
| Line 11: | Line 11: | ||
=== Required === | === Required === | ||
* [[Beecrypt]] | * [[Beecrypt]] | ||
=== Recommended === | === Recommended === | ||
* [[Popt]] | * [[Popt]] | ||
=== Optional === | === Optional === | ||
* [[ | * [[Lua]] | ||
* [[lzma]] | |||
* [[Neon]] | |||
* [[NSS]] | * [[NSS]] | ||
* [[OpenSSL]] | * [[OpenSSL]] | ||
* [[ | * [[Pcre]] | ||
* [[Python]] | |||
* [[SELinux]] | |||
* [[SQLite3]] | * [[SQLite3]] | ||
* [[ | * [[Dmalloc]] | ||
* [[ | * [[DUMA]] | ||
* [[keyutils]] | * [[keyutils]] | ||
| Line 39: | Line 40: | ||
--libdir=/usr/lib --localstatedir=/var/lib \ | --libdir=/usr/lib --localstatedir=/var/lib \ | ||
--enable-build-pic --enable-build-pie \ | --enable-build-pic --enable-build-pie \ | ||
--disable-build-intlibdep | --disable-build-intlibdep --with-popt=/usr && | ||
make | |||
Install the package: | Install the package: | ||
| Line 55: | Line 57: | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
--libdir=/usr/lib --localstatedir=/var/lib \ | --libdir=/usr/lib --localstatedir=/var/lib \ | ||
--enable-build-pic --enable-build-pie && | --enable-build-pic --enable-build-pie \ | ||
--with-popt=/usr && | |||
make | make | ||
| Line 74: | Line 77: | ||
./configure --prefix=/usr --sysconfdir=/etc \ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
--libdir=/usr/lib64 --localstatedir=/var/lib \ | --libdir=/usr/lib64 --localstatedir=/var/lib \ | ||
--enable-build-pic --enable-build-pie && | --enable-build-pic --enable-build-pie \ | ||
--with-popt=/usr && | |||
make | make | ||
Latest revision as of 08:24, 19 July 2009
| Download Source: | http://rpm5.org/files/rpm/rpm-5.1/rpm-5.1.9.tar.gz |
|---|
Introduction to RPM5
RPM is a command-line package management system capable of installing, uninstalling, verifying, querying, and updating Unix software packages.
Project Homepage: http://rpm5.org/
Dependencies
Required
Recommended
Optional
Not-Recommended
- External Berkeley DB Support
- XAR
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 --with-popt=/usr &&
make
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 \
--with-popt=/usr &&
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 \
--with-popt=/usr &&
make
Install the package:
make install