mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-31 03:12:30 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
| Summary: xCAT perl libraries
 | |
| Name: perl-xCAT
 | |
| Version: 2.0
 | |
| Release: snap%(date +"%Y%m%d%H%M")
 | |
| License: EPL
 | |
| Group: System Environment/Libraries
 | |
| Source: perl-xCAT-2.0.tar.gz
 | |
| Packager: IBM Corp.
 | |
| Vendor: IBM Corp.
 | |
| Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
 | |
| Prefix: %{_prefix}
 | |
| BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
 | |
| %ifos linux
 | |
| BuildArch: noarch
 | |
| %endif
 | |
| 
 | |
| Provides: perl(xCAT) = %{version}
 | |
| 
 | |
| %description
 | |
| Provides perl xCAT libraries for core functionality.  Required for all xCAT installations.
 | |
| Includes xCAT::Table, xCAT::NodeRange, among others.
 | |
| 
 | |
| %prep
 | |
| %setup -q -n perl-xCAT-%{version}
 | |
| 
 | |
| %build
 | |
| perl Makefile.PL
 | |
| %{__make} %{?mflags}
 | |
| 
 | |
| %install
 | |
| %{__make} install DESTDIR=$RPM_BUILD_ROOT %{?mflags_install}
 | |
| test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT/%{_datadir} ||:
 | |
| test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT/%{_libdir}/perl5/5* ||:
 | |
| 
 | |
| find %{buildroot} -name "perllocal.pod" \
 | |
|     -o -name ".packlist"                \
 | |
|     -o -name "*.bs"                     \
 | |
|     |xargs -i rm -f {}
 | |
| 
 | |
| #  ndebug - this seems to break the AIX build - need to investigate
 | |
| %ifos linux
 | |
| find %{buildroot}%{_prefix}             \
 | |
|     -type d -depth                      \
 | |
|     -exec rmdir {} \; 2>/dev/null
 | |
| %endif
 | |
| 
 | |
| find $RPM_BUILD_ROOT -type f | sed -e "s@$RPM_BUILD_ROOT@/@" > files.list
 | |
| 
 | |
| %clean
 | |
| test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
 | |
| 
 | |
| %files -f files.list
 | |
| %defattr(-, root, root)
 | |
| %doc LICENSE.html
 | |
| %doc README 
 | |
| %doc xCAT2.0.doc 
 | |
| %doc xCAT2.0.pdf
 | |
| 
 | |
| 
 | |
| %changelog
 | |
| * Wed May 2 2007 - Norm Nott nott@us.ibm.com
 | |
| - Made changes to make this work on AIX
 | |
| 
 | |
| * Wed Jan 24 2007 Jarrod Johnson <jbjohnso@us.ibm.com>
 | |
| -It begins
 | |
| 
 |