mirror of
https://github.com/xcat2/xcat-dep.git
synced 2024-11-22 01:21:44 +00:00
51 lines
1.1 KiB
RPMSpec
51 lines
1.1 KiB
RPMSpec
Summary: Metapackage for MySQL on AIX
|
|
Name: xcat-mysql
|
|
Version: 5.0
|
|
Release: 1
|
|
License: EPL
|
|
Group: Applications/System
|
|
Vendor: IBM Corp.
|
|
Packager: IBM Corp.
|
|
Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
|
|
BuildArch: ppc
|
|
Source1: mysql-5.0.67-aix5.3-powerpc-64bit.tar.gz
|
|
Provides: xcat-mysql = %{version}
|
|
|
|
%description
|
|
Installs and configures MySQL 5.0 on AIX systems.
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/usr/local
|
|
cp %{SOURCE1} $RPM_BUILD_ROOT/usr/local
|
|
|
|
%post
|
|
|
|
cd /usr/local
|
|
|
|
# uwrap
|
|
gunzip /usr/local/mysql-5.0.67-aix5.3-powerpc-64bit.tar.gz
|
|
tar -xvf /usr/local/mysql-5.0.67-aix5.3-powerpc-64bit.tar
|
|
|
|
# set up link for mysql
|
|
ln -s /usr/local/mysql-5.0.67-aix5.3-powerpc-64bit mysql
|
|
|
|
# set PATH??
|
|
echo "PATH=\$PATH:/usr/local/mysql:/usr/local/mysql/bin:/usr/local/mysql/lib:/usr/local/mysql/include
|
|
export PATH" >>/etc/profile
|
|
|
|
echo "The PATH environment variable has been updated in /etc/profile."
|
|
|
|
# TODO - add postun section to remove MySQL -
|
|
|
|
%clean
|
|
|
|
%files
|
|
/usr/local/mysql-5.0.67-aix5.3-powerpc-64bit.tar.gz
|
|
%defattr(-,root,root)
|