git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9438 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| OSNAME=$(uname)
 | |
| VER=`cat Version`
 | |
| 
 | |
| if [ "$OSNAME" = "AIX" ]
 | |
| then
 | |
| 
 | |
|         #source=$PWD
 | |
|         #cd /opt/freeware/src/packages/SOURCES
 | |
|         #rm -f xCAT-client-$VER; ln -s $source/xCAT-client xCAT-client-$VER
 | |
|         #rm -f /opt/freeware/src/packages/SRPMS/xCAT-client*rpm /opt/freeware/src/packages/RPMS/ppc/xCAT-client*rpm
 | |
|         #echo '.svn' > /tmp/xcat-excludes
 | |
|         #tar -X /tmp/xcat-excludes -cf xCAT-client-$VER.tar xCAT-client-$VER
 | |
|         #gzip -f /opt/freeware/src/packages/SOURCES/xCAT-client-$VER.tar
 | |
|         #cd $source/xCAT-client
 | |
|         #rpm -ba xCAT-client.spec
 | |
| 
 | |
|         source=/opt/freeware/src/packages
 | |
|         echo '.svn' > /tmp/xcat-excludes
 | |
|         tar -X /tmp/xcat-excludes -cf $source/SOURCES/xCAT-client-$VER.tar xCAT-client
 | |
|         gzip -f $source/SOURCES/xCAT-client-$VER.tar
 | |
|         rm -f $source/SRPMS/xCAT-client*rpm $source/RPMS/ppc/xCAT-client*rpm
 | |
|         rpm -ba xCAT-client/xCAT-client.spec
 | |
|         #rpm -ta $source/SOURCES/xCAT-client-$VER.tar.gz
 | |
| else
 | |
| 	rpmbuild --version > /dev/null
 | |
| 	if [ $? -gt 0 ]
 | |
| 	then
 | |
| 		echo "Error: Is rpmbuild installed and working?"
 | |
| 		exit 1
 | |
| 	fi
 | |
| 	RPMROOT=`rpmbuild --eval '%_topdir' xCATsn/xCATsn.spec`
 | |
| 	if [ $? -gt 0 ]
 | |
| 	then
 | |
| 		echo "Could not determine rpmbuild's root"
 | |
| 		exit 1
 | |
| 	fi
 | |
| 	echo "The location for rpm building is ${RPMROOT}"
 | |
| 
 | |
| 	set -x
 | |
| 	tar --exclude=.svn -czhf $RPMROOT/SOURCES/xCAT-client-$VER.tar.gz xCAT-client
 | |
| 	rm -f $RPMROOT/SRPMS/xCAT-client-$VER*rpm $RPMROOT/RPMS/noarch/xCAT-client-$VER*rpm
 | |
| 	rpmbuild -ta $RPMROOT/SOURCES/xCAT-client-$VER.tar.gz
 | |
| fi
 |