This repository has been archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
46 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
nmake -f makefile.vc INSTDIR=%PREFIX% | ||
if errorlevel 1 exit 1 | ||
|
||
nmake -f makefile.vc INSTDIR=%PREFIX% install-all | ||
if errorlevel 1 exit 1 | ||
|
||
move %PREFIX%\bin\*.* %PREFIX% | ||
if errorlevel 1 exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
#!/bin/bash | ||
|
||
./configure --prefix=$PREFIX --without-jni | ||
|
||
make | ||
|
||
# Bad OSX! | ||
if [[ $(uname) == Linux ]]; then | ||
make check | ||
fi | ||
|
||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package: | ||
name: proj.4 | ||
version: "4.9.1" | ||
|
||
source: | ||
fn: proj-4.9.1.tar.gz | ||
url: http://download.osgeo.org/proj/proj-4.9.1.tar.gz | ||
md5: 3cbb2a964fd19a496f5f4265a717d31c | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
run: | ||
# The VS version is important. See # https://github.com/SciTools/conda-recipes-scitools/issues/94. | ||
- python # [win] | ||
|
||
test: | ||
commands: | ||
- echo -117 30 | cs2cs +proj=latlong +datum=NAD27 +to +proj=latlong +datum=NAD83 | ||
- echo -105 40 | proj +proj=utm +zone=13 +ellps=WGS84 | ||
|
||
about: | ||
home: http://trac.osgeo.org/proj/ | ||
license: MIT | ||
summary: 'Cartographic projection software' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.