本文講述了制作nginx的RPM包的方法,實例如下:
1. 下載nginx源碼,直接運行命令:
cd /rootwget http://nginx.org/download/nginx-1.7.1.tar.gz
在拿到源碼包之后,解壓,并進入目錄:
tar zxvf nginx-1.7.1.tar.gzcd nginx-1.7.1
2. 編寫SPEC文件
文件名為:nginx.spec
Summary: High Performance Web ServerName: nginxVersion: 1.7.1Release: el5License: GPLGroup: Applications/ServerSource: http://nginx.org/download/nginx-%{version}.tar.gzURL: http://nginx.org/Distribution: LinuxPackager: yunjianfei <yunjianfei1987@gmail.com>BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}%define srcdir /root/nginx-1.7.1%descriptionnginx [engine x] is a HTTP and reverse proxy server, as well as a mail proxy server%prep%buildcd %{srcdir}./configure --prefix=/usr/local/nginxmake -j8%installcd %{srcdir}make DESTDIR=%{buildroot} install%preunif [ -z "`ps aux | grep nginx | grep -v grep`" ];then killall nginx >/dev/null exit 0fi%files/usr/local/nginx
3. 最后執行rpmbuild命令,打rpm包
rpmbuild -bb nginx.spec
至此,執行完畢之后,rpm包就打包完成了。
新聞熱點
疑難解答