2008-02-22 21:54:44 +00:00
|
|
|
#!/bin/sh
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
OSNAME=$(uname)
|
2009-01-28 15:42:14 +00:00
|
|
|
VER=`cat Version`
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
if [ "$OSNAME" = "AIX" ]
|
|
|
|
then
|
2008-01-17 20:33:12 +00:00
|
|
|
|
2009-01-28 15:42:14 +00:00
|
|
|
#source=$PWD
|
|
|
|
#cd /opt/freeware/src/packages/SOURCES
|
|
|
|
#rm -f perl-xCAT-$VER; ln -s $source/perl-xCAT perl-xCAT-$VER
|
|
|
|
#rm -f /opt/freeware/src/packages/SRPMS/perl-xCAT*rpm /opt/freeware/src/packages/RPMS/ppc/perl-xCAT*rpm
|
|
|
|
#echo '.svn' > /tmp/xcat-excludes
|
|
|
|
#tar -X /tmp/xcat-excludes -cf perl-xCAT-$VER.tar perl-xCAT-$VER
|
|
|
|
#gzip -f /opt/freeware/src/packages/SOURCES/perl-xCAT-$VER.tar
|
|
|
|
#cd $source/perl-xCAT
|
|
|
|
#rpm -ba perl-xCAT.spec
|
|
|
|
|
|
|
|
source=/opt/freeware/src/packages
|
2008-06-03 19:34:04 +00:00
|
|
|
echo '.svn' > /tmp/xcat-excludes
|
2009-01-28 20:26:03 +00:00
|
|
|
tar -X /tmp/xcat-excludes -cf $source/SOURCES/perl-xCAT-$VER.tar perl-xCAT
|
2009-01-28 15:42:14 +00:00
|
|
|
gzip -f $source/SOURCES/perl-xCAT-$VER.tar
|
2009-01-28 20:26:03 +00:00
|
|
|
rm -f $source/SRPMS/perl-xCAT*rpm $source/RPMS/ppc/perl-xCAT*rpm
|
2009-01-28 15:42:14 +00:00
|
|
|
rpm -ba perl-xCAT/perl-xCAT.spec
|
|
|
|
#rpm -ta $source/SOURCES/perl-xCAT-$VER.tar.gz
|
2007-10-26 22:44:33 +00:00
|
|
|
else
|
|
|
|
if [ -f /etc/redhat-release ]
|
|
|
|
then
|
|
|
|
pkg="redhat"
|
|
|
|
else
|
|
|
|
pkg="packages"
|
|
|
|
fi
|
|
|
|
|
2008-06-03 19:34:04 +00:00
|
|
|
set -x
|
2009-01-28 15:42:14 +00:00
|
|
|
|
|
|
|
tar --exclude .svn -czhf /usr/src/$pkg/SOURCES/perl-xCAT-$VER.tar.gz perl-xCAT;
|
2008-06-03 15:03:32 +00:00
|
|
|
rm -f /usr/src/$pkg/SRPMS/perl-xCAT-$VER*rpm /usr/src/$pkg/RPMS/noarch/perl-xCAT-$VER*rpm
|
2009-01-28 15:42:14 +00:00
|
|
|
rpmbuild -ta /usr/src/$pkg/SOURCES/perl-xCAT-$VER.tar.gz
|
|
|
|
|
2007-10-26 22:44:33 +00:00
|
|
|
fi
|