mirror of https://github.com/swig/swig
50 lines
1.2 KiB
Python
Executable File
50 lines
1.2 KiB
Python
Executable File
#!/usr/local/bin/python
|
|
|
|
# This script builds a SWIG1.3 distribution.
|
|
# Usage : mkdist.py dirname
|
|
|
|
import sys
|
|
import string
|
|
|
|
try:
|
|
dirname = sys.argv[1]
|
|
except:
|
|
print "Usage: mkdist.py directory"
|
|
sys.exit(0)
|
|
|
|
# If directory exists, remove it
|
|
import os
|
|
print "Removing ", dirname
|
|
os.system("rm -rf "+dirname)
|
|
|
|
# Do a CVS export on the directory name
|
|
|
|
print "Checking out SWIG"
|
|
os.system("cvs export -D now -d "+dirname+ " SWIG")
|
|
|
|
# Remove the debian directory -- it's not official
|
|
|
|
os.system("rm -Rf "+dirname+"/debian");
|
|
|
|
# Blow away all .cvsignore files
|
|
|
|
print "Blowing away .cvsignore files"
|
|
os.system("find "+dirname+" -name .cvsignore -exec rm {} \\;");
|
|
|
|
# Go build the system
|
|
|
|
os.system("cd "+dirname+"; ./autogen.sh")
|
|
os.system("cd "+dirname+"/Tools/WAD; autoconf")
|
|
os.system("cd "+dirname+"/Source/CParse; bison -y -d parser.y; mv y.tab.c parser.c; mv y.tab.h parser.h")
|
|
|
|
# Remove autoconf files
|
|
os.system("find "+dirname+" -name autom4te.cache -exec rm -rf {} \\;");
|
|
|
|
# Build documentation
|
|
os.system("cd "+dirname+"/Doc/Manual; python maketoc.py; rm *.bak")
|
|
|
|
# Build the tar-ball
|
|
os.system("tar -cf "+string.lower(dirname)+".tar "+dirname)
|
|
os.system("gzip "+string.lower(dirname)+".tar")
|
|
|