
meu arquivo de especificação é:
%prep
tar zxvf $RPM_SOURCE_DIR/httpd-2.4.3.tar.gz
%build
%install
cd httpd-2.4.3
./configure -prefix=/usr/local/apache
make
make install
%preun
if [ -z "`ps aux|grep httpd | grep -v grep`" ];then
pkill httpd >/dev/null
exit 0
fi
%files
/usr/local/apache
rpmbuild -ba lx.spec
, e o pacote RPM de httpd-2.4-3.x86_64.rpm está ok. Mas quando eu instalei por
rpm -ivh httpd-2.4-3.x86_64.rpm
não está certo e a mensagem de erro é:
error: Failed dependencies:
libpcre.so.1()(64bit) is needed by httpd-2.4-3.x86_64
Responder1
Se sua máquina for CentOS ou RHEL, você precisará instalar o pcre.x86_64
pacote.
# yum resolvedep "libpcre.so.0()(64bit)"
Loaded plugins: downloadonly, product-id, rhnplugin, security
This system is receiving updates from RHN Classic or RHN Satellite.
0:pcre-7.8-6.el6.x86_64