|
Lines 1-25
Link Here
|
| 1 |
--- setup.py.orig Tue Feb 22 19:18:40 2005 |
1 |
--- setup.py.orig Fri Aug 15 08:11:14 2003 |
| 2 |
+++ setup.py Tue Feb 22 19:19:26 2005 |
2 |
+++ setup.py Sat Feb 26 12:29:32 2005 |
| 3 |
@@ -14,7 +14,7 @@ |
3 |
@@ -12,9 +12,9 @@ |
|
|
4 |
url = "archmage.sf.net", |
| 5 |
version = "0.0.6", |
| 4 |
|
6 |
|
| 5 |
py_modules = ['chmlib', 'CHM', 'mod_chm'], |
7 |
- py_modules = ['chmlib', 'CHM', 'mod_chm'], |
| 6 |
scripts = ['archmage'], |
8 |
- scripts = ['archmage'], |
| 7 |
- data_files = [ ('/etc/', [ 'arch.conf' ] ), |
9 |
- data_files = [ ('/etc/', [ 'arch.conf' ] ), |
|
|
10 |
+ py_modules = ['archmage.chmlib', 'archmage.CHM', 'archmage.mod_chm'], |
| 11 |
+ scripts = ['archmage/archmage'], |
| 8 |
+ data_files = [ ('etc/', [ 'arch.conf' ] ), |
12 |
+ data_files = [ ('etc/', [ 'arch.conf' ] ), |
| 9 |
( 'share/archmage/templates/', |
13 |
( 'share/archmage/templates/', |
| 10 |
['templates/arch_contents.html', |
14 |
['templates/arch_contents.html', |
| 11 |
'templates/arch_frameset.html', |
15 |
'templates/arch_frameset.html', |
| 12 |
@@ -65,13 +65,4 @@ |
16 |
@@ -65,13 +65,11 @@ |
| 13 |
'templates/icons/7.gif', |
17 |
'templates/icons/7.gif', |
| 14 |
'templates/icons/8.gif', |
18 |
'templates/icons/8.gif', |
| 15 |
'templates/icons/9.gif']) ], |
19 |
'templates/icons/9.gif']) ], |
| 16 |
- ext_modules = [ Extension(name = '_chmlib', |
20 |
- ext_modules = [ Extension(name = '_chmlib', |
| 17 |
- sources = |
21 |
+ ext_modules = [ Extension(name = 'archmage._chmlib', |
|
|
22 |
sources = |
| 18 |
- [ 'chmlib/chm_lib.c', |
23 |
- [ 'chmlib/chm_lib.c', |
| 19 |
- 'chmlib/wrapper.c', |
24 |
- 'chmlib/wrapper.c', |
| 20 |
- 'chmlib/lzx.c', |
25 |
- 'chmlib/lzx.c', |
| 21 |
- 'chmlib/az_chmlib_add.c' |
26 |
- 'chmlib/az_chmlib_add.c' |
| 22 |
- ], |
27 |
+ [ 'chmlib/wrapper.c', |
|
|
28 |
], |
| 23 |
- include_dirs=["chmlib"]) |
29 |
- include_dirs=["chmlib"]) |
| 24 |
- ] |
30 |
+ libraries=["chm"] |
|
|
31 |
+ ) |
| 32 |
] |
| 25 |
) |
33 |
) |