added distribution script

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@19 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
Just 1999-12-18 23:05:58 +00:00
parent 5a16f847f1
commit ab5753c669

12
mktarball.py Normal file
View File

@ -0,0 +1,12 @@
#! /usr/bin/env python
import os
src = os.getcwd()
tar = src + ".tar"
gz = tar + ".gz"
tgz = src + ".tgz"
os.system("tar --exclude=CVS -cvf %s %s" % (tar, src))
os.system("gzip -9v %s" % tar)
os.rename(gz, tgz)