-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfigure
49 lines (41 loc) · 1.28 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Configure
~~~~~~~~~
Simple configure script that creates a makefile.
:copyright: (c) 2010 by the Zine Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
import os
import sys
from optparse import OptionParser
def main():
global parser
parser = OptionParser(usage='%prog')
parser.add_option('--prefix', dest='prefix', default='/usr/local',
help='install architecture-independent files in PREFIX '
'[/usr/local]')
parser.add_option('--python', dest='python', default=sys.executable,
help='the python version to use for the installation')
options, args = parser.parse_args()
if args:
parser.error('too many arguments')
f = file('Makefile.in')
try:
makefile_in = f.read()
finally:
f.close()
f = file('Makefile', 'w')
try:
f.write(makefile_in % {
'PYTHON': options.python,
'PREFIX': os.path.abspath(options.prefix)
})
finally:
f.close()
print 'Generated Makefile'
print 'type "make install" to install Zine'
if __name__ == '__main__':
os.chdir(os.path.dirname(__file__) or '.')
main()