RPM spec made relocatable by adding prefix but while installing i do not see the files installed

前提是你 提交于 2019-12-12 23:38:03

问题


Summary: A small lighttpd
Name: lighttpd
Version: 1.4.28
Release: 1000

License: LGPL
Group: Applications/Webserver
URL: http://www.lighttpd.com/
Source: http://www.lighttpd.com/lighttpd-%{version}.tar.gz
BuildRoot: %{name}-%{version}
Prefix: /opt/src/Opensource/lighttpd-1.4.28/install
#Do not terminate if there are files in the buildroot that are not packed into the rpm.
%define _unpackaged_files_terminate_build       0
#Do not terminate if there are any documents missing in the buildroot dir and not      packaged
%define _missing_doc_files_terminate_build      0
%description
A small foot print webserver
%files
%defattr(-, root, root, 0755)
#%doc README
/sbin/lighttpd
/lib/mod_auth.so
/lib/mod_cgi.so
/lib/mod_cml.so
/lib/mod_compress.so
Given this i build my rpm using the following command
rpmbuild -bb --buildroot /opt/src/Opensource/lighttpd-1.4.28/install  lightppd.spec
rpm -qpi  on the generated rpm gives me the following output
Name        : lighttpd               Relocations:/opt/src/Opensource/lighttpd-1.4.28/install
Version     : 1.4.28                            Vendor:  Repository
Release     : 1000                          Build Date: Tue 19 Jul 2011 05:17:44 PM PDT
Install Date: (not installed)               Build Host: 
Group       : Applications/Webserver        Source RPM: lighttpd-1.4.28-1000.src.rpm
Size        : 259873                           License: LGPL
Signature   : (none)

while installing i issue the command

rpm -ivh --prefix /opt/components/  --dbpath /opt/rpm/database

I get the rpm installed 

but i dont see any installtion directory or files installed in the location /opt/components

回答1:


Check out http://www.rpm.org/max-rpm/s1-rpm-reloc-wrinkles.html, in particular the first bullet that says "files in the %files section should start with the prefix tag line".

Try prefixing your file names in your %files section with '/opt/src/Opensource/lighttpd-1.4.28/install', rebuild the rpm and then try the installation again.



来源:https://stackoverflow.com/questions/6755810/rpm-spec-made-relocatable-by-adding-prefix-but-while-installing-i-do-not-see-the

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!