forked from conda-archive/conda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
7788b5b
commit c8754b2
Showing
3 changed files
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cd supportlib | ||
scons | ||
|
||
cd .. | ||
"%PYTHON%" setup.py install | ||
if errorlevel 1 exit 1 | ||
|
||
:: Add more build steps here, if they are necessary. | ||
|
||
:: See | ||
:: http://docs.continuum.io/conda/build.html | ||
:: for a list of environment variables that are set during the build process. |
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,13 @@ | ||
#!/bin/bash | ||
|
||
cd supportlib | ||
scons | ||
|
||
cd .. | ||
$PYTHON setup.py install | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
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,22 @@ | ||
package: | ||
name: cgkit | ||
version: 2.0.0 | ||
|
||
source: | ||
fn: cgkit-2.0.0-py2k.tar.gz [py2k] | ||
url: http://downloads.sourceforge.net/project/cgkit/cgkit/cgkit-2.0.0/cgkit-2.0.0-py2k.tar.gz [py2k] | ||
fn: cgkit-2.0.0-py3k.tar.gz [py3k] | ||
url: http://downloads.sourceforge.net/project/cgkit/cgkit/cgkit-2.0.0/cgkit-2.0.0-py3k.tar.gz [py3k] | ||
|
||
requirements: | ||
build: | ||
- python | ||
- scons | ||
# boost.python | ||
run: | ||
- python | ||
# boost.python | ||
|
||
about: | ||
home: http://cgkit.sourceforge.net | ||
license: Mozilla Public License |