打印

如何给mysql打包,用一般的spec模板编译成的包无法安装

如何给mysql打包,用一般的spec模板编译成的包无法安装

我用以下的spec文档编译成的rpm包安装时会出现如下错误
perl(DBI) is needed by mysql-5.0.16
初学spec文档,对rpm打包一知半解,可能错误很多,还请诸位帮我看看啊。

Name:mysql
Version:5.0.16
Release:1
Summary:database mysql
Group:Applications/Multimedia
License: GPL
URL:http://www.mysql.com
Source:mysql-5.0.16.tar.gz
BuildRoot:%{_tmppath}/%{name}-%{version}-%{release}-buildroot
Prefix:/usr/local/mysql
%description
mysql v5 set character set  gbk
%prep
%setup -q
%Build
./configure --prefix=/usr/local/mysql --with-charset=gbk --with-collation=gbk_chinese_ci --with-extra-charsets=gb2312,big5,utf8,binary,ascii
make
%install
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%post
groupadd mysql
useradd -g mysql mysql
cd /usr/local/mysql
bin/mysql_install_db --user=mysql
chown -R root  .
chown -R mysql var
chgrp -R mysql .
bin/mysqld_safe --user=mysql &
echo "%{prefix}/bin/mysqld_safe --user=mysql &">>/etc/rc.d/rc.local
%files
%defattr(-,root,root)
/usr
%changelog
* Fri Dec 11 2005 haulm <haulm@126.com> -5.0.16
- modified the full mysql-gbk
自古多情空余恨,几人独潇洒。
问君相伴何所思,唯叹红叶飞。
凭栏窗外一皓月,冷风抚面,寒星如冰。
回想前事独伤感,难分难离,倒是山峦草芥,依旧青。

TOP

不用了,我到mysql官方下载src.rpm包,看来自己不容易打包,得看官方的spec是怎么写的。
自古多情空余恨,几人独潇洒。
问君相伴何所思,唯叹红叶飞。
凭栏窗外一皓月,冷风抚面,寒星如冰。
回想前事独伤感,难分难离,倒是山峦草芥,依旧青。

TOP

一般来说可以在google会官方网站找到srpm,可以做参考,甚至可以在google上找到spec.用 xxx filetype:spec就可以搜索到.

TOP

[quote:0f311c944d="haulm"]不用了,我到mysql官方下载src.rpm包,看来自己不容易打包,得看官方的spec是怎么写的。[/quote]
你在开玩笑吗?
仔细看看源码包的结构,里面就有spec

TOP

perl(DBI) is needed by mysql-5.0.16
是需要perl-DBI的包的支持
注意BuildRequires字段
需要安装perl-DBI才能打包
rpm包 的依赖太烦人了!!!
http://softswitch.com.cn/~xinzhen/downloads/apt/magic/ http://auvtech.com/~xinzhen/downloads/apt/ http://apt.magiclinux.org/ http://rpm.livna.org/fedora/ http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/5/ http://download.fedora.redhat.com/pub/fedora/linux http://fedora.linuxsir.org/main/?q=node/140 http://download.fedora.redhat.com/pub/fedora/ http://people.redhat.com/davej/kernels/Fedora/FC5/ http://www.syclover.cn/ http://www.linux-ntfs.org/content/view/187/ http://download.fedora.redhat.com/pub/fedora/linux/core/updates/5/i386/ http://iptables-tutorial.frozentux.net/cn/iptables-tutorial-cn-1.1.19.html http://download.webmin.com/download/plugins/ http://webadminmodules.sourceforge.net/ http://kwizart.free.fr/fedora/5/i386/ http://hi.baidu.com/phybest/blog http://dri.freedesktop.org/snapshots/ http://jira.321211.net:8080/browse/MGC-38 ftp://magic:magic@apt.magiclinux.org http://linmodems.technion.ac.il/packages/ http://atrpms.net/dist/fc5/ http://ftp.riken.go.jp/pub/Linux/dag/redhat/el5/en/i386/RPMS.dag/

TOP