rpm打包

1、如果是官方包:

下载src.rpm,解压后得到源码及spec文件;覆盖源码,解决依赖;直接打包
rpmbuild -ba xxxx.spec

2、没有官方包:

使用rpmbuild打包
编写spec
vi xxx.spec

Name: hellorpm #名字为源码tar.gz 包的名字
Version: 1.0.0 #版本号,⼀定要与tar.gz包的⼀致哦
Release: 1%{?dist} #释出号,也就是第⼏次制作rpm
Summary: helloword #描述信息/软件包简介,最好不超过50字符
License: GPL #许可,GPL还是BSD等
URL: #⾃定义该信息,可以写⼀个⽹址
Packager: abel
Source0: %{name}-%{version}.tar.gz 
#定义⽤到的source,也就是你的源码
BuildRoot: %_topdir/BUILDROOT 
#这个是软件make install 的测试安装⽬录.
BuildRequires: gcc,make #制作过程中⽤到的软件包
Requires: python-apscheduler >= 2.1.2-1.el7,python-daemon >= 1.6-1.el7 #软件运⾏依
赖的软件包,也可以指定最低版本如 bash >= 1.1.1
%description #描述,随便写
%prep #打包开始
%setup -q #这个作⽤静默模式解压并cd 
%build #编译制作阶段,主要⽬的就是编译,如果不⽤编译就为空
./configure \ 
 %{?_smp_mflags} #make后⾯的意思是:如果就多处理器的话make时并⾏编译
%install #安装阶段//安装之前需初始化安装⽬录
 rm -rf %{buildroot} #先删除原来的安装的,如果你不是第⼀次安装的话
 cp -rp %_topdir/BUILD/%{name}-%{version}/* $RPM_BUILD_ROOT
#将需要需要打包的⽂件从BUILD ⽂件夹中拷⻉到BUILDROOT⽂件夹下。
#下⾯的⼏步pre、post、preun、postun 没必要可以不写
%pre #rpm安装前制⾏的脚本
%post #安装后执⾏的脚本//安装之后需要执⾏的动作
cp /usr/local/httpd/bin/apachectl /etc/init.d/myhttpd
sed -i '1a # chkconfig: 2345 85 15' /etc/init.d/myhttpd
%preun #卸载前执⾏的脚本//卸载该rpm包所执⾏的⼀些操作
/etc/init.d/myhttpd stop
%postun #卸载后执⾏的脚本
%clean #清理段,删除buildroot
rm -rf %{buildroot}
%files #rpm要包含的⽂件//安装之后⽣成的⽂件
%defattr (-,root,root,-) #设定默认权限,如果下⾯没有指定权限,则继承默认
/etc/hello/word/helloword.c #将你需要打包的⽂件或⽬录写下来
/usr/local/httpd/bin/*
%dir /usr/local/httpd/logs
%doc /usr/local/httpd/man/*
%doc /usr/local/httpd/manual/*
###

你可能感兴趣的:(rpm打包)