|
Revision 1471, 0.6 KB
(checked in by seang, 4 months ago)
|
|
Simplify buildout
|
| Line | |
|---|
| 1 | [buildout] |
|---|
| 2 | index = http://download.zope.org/ppix |
|---|
| 3 | parts = |
|---|
| 4 | interpreter |
|---|
| 5 | geos |
|---|
| 6 | testrunner |
|---|
| 7 | develop = |
|---|
| 8 | src/Shapely |
|---|
| 9 | |
|---|
| 10 | [geos] |
|---|
| 11 | recipe = hexagonit.recipe.cmmi |
|---|
| 12 | url = http://download.osgeo.org/geos/geos-3.1.1.tar.bz2 |
|---|
| 13 | |
|---|
| 14 | [interpreter] |
|---|
| 15 | recipe = zc.recipe.egg |
|---|
| 16 | eggs = |
|---|
| 17 | Shapely |
|---|
| 18 | numpy |
|---|
| 19 | interpreter = labpy |
|---|
| 20 | |
|---|
| 21 | [testrunner] |
|---|
| 22 | recipe = zc.recipe.testrunner |
|---|
| 23 | extra-paths = |
|---|
| 24 | ${buildout:directory}/eggs/numpy-1.3.0-py2.5-macosx-10.5-i386.egg |
|---|
| 25 | eggs = |
|---|
| 26 | Shapely |
|---|
| 27 | script = test-shapely |
|---|
| 28 | environment = geosenv |
|---|
| 29 | |
|---|
| 30 | [geosenv] |
|---|
| 31 | LD_LIBRARY_PATH = ${geos:location}/lib |
|---|
| 32 | DYLD_LIBRARY_PATH = ${geos:location}/lib |
|---|