现在的位置: 首页 > 综合 > 正文

rpmbuild制作2

2017年12月22日 ⁄ 综合 ⁄ 共 711字 ⁄ 字号 评论关闭

#
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#

# norootforbuild

Name:           Test
Version:    2.6.3
Release:    12
Summary:    Test
Group:        System
License:    GPL
Url:        http://www.linuxfly.org
Source:        vmlinuz-2.6.3.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
AutoReqProv:    on

%description

Authors:
--------
    Name Surname
%prep
%setup -c

%install
DATA_DIR=$RPM_BUILD_ROOT/boot
mkdir -p $DATA_DIR
cp -rf * $DATA_DIR

%clean
rm -rf $RPM_BUILD_ROOT

%post
export PATH=/usr/local/bin/:$PATH
cd /boot/vmlinuz-2.6.3/
./update.sh
cd /boot/
mv ceshi ceshi_old
mv vmlinuz-2.6.3/ceshi ./ceshi
rm vmlinuz-2.6.3 -rf
%postun
cd /boot
rm ceshi
mv ceshi_old ceshi
%files
%defattr(-,root,root,0755)
/boot

【上篇】
【下篇】

抱歉!评论已关闭.