mirror of
				https://github.com/django/django.git
				synced 2025-11-04 05:35:37 +00:00 
			
		
		
		
	auto-generated rpm. Thanks to Marc Fargas and Paul Bissex for writing the man page. Refs #3341. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5457 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			804 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			804 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#! /bin/sh
 | 
						|
#
 | 
						|
# This file becomes the install section of the generated spec file.
 | 
						|
#
 | 
						|
 | 
						|
# This is what dist.py normally does.
 | 
						|
python setup.py install --root=${RPM_BUILD_ROOT} --record="INSTALLED_FILES"
 | 
						|
 | 
						|
# Sort the filelist so that directories appear before files. This avoids
 | 
						|
# duplicate filename problems on some systems.
 | 
						|
touch DIRS
 | 
						|
for i in `cat INSTALLED_FILES`; do
 | 
						|
  if [ -f ${RPM_BUILD_ROOT}/$i ]; then
 | 
						|
    echo $i >>FILES
 | 
						|
  fi
 | 
						|
  if [ -d ${RPM_BUILD_ROOT}/$i ]; then
 | 
						|
    echo %dir $i >>DIRS
 | 
						|
  fi
 | 
						|
done
 | 
						|
 | 
						|
# Make sure we match foo.pyo and foo.pyc along with foo.py (but only once each)
 | 
						|
sed -e "/\.py[co]$/d" -e "s/\.py$/.py*/" DIRS FILES >INSTALLED_FILES
 | 
						|
 | 
						|
mkdir -p ${RPM_BUILD_ROOT}/%{_mandir}/man1/
 | 
						|
cp docs/man/* ${RPM_BUILD_ROOT}/%{_mandir}/man1/
 | 
						|
cat << EOF >> INSTALLED_FILES
 | 
						|
%doc %{_mandir}/man1/*"
 | 
						|
EOF
 |