Changeset 839 for pykota/trunk/setup.py

Show
Ignore:
Timestamp:
03/09/03 17:49:04 (21 years ago)
Author:
jalet
Message:

The installation script installs the man pages too now.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/setup.py

    r695 r839  
    1717# 
    1818# $Log$ 
     19# Revision 1.2  2003/03/09 16:49:04  jalet 
     20# The installation script installs the man pages too now. 
     21# 
    1922# Revision 1.1  2003/02/05 21:28:17  jalet 
    2023# Initial import into CVS 
     
    3740    directory = os.sep.join(["share", "locale", lang, "LC_MESSAGES"]) 
    3841    data_files.append((directory, [ mofile ])) 
     42     
     43directory = os.sep.join(["share", "man", "man1"]) 
     44manpages = glob.glob(os.sep.join(["man", "*.1"]))     
     45data_files.append((directory, manpages)) 
    3946 
    4047setup(name = "pykota", version = __version__,