Skip to content

Commit

Permalink
Add cgkit
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Nov 26, 2013
1 parent 7788b5b commit c8754b2
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cgkit/bld.bat
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.
13 changes: 13 additions & 0 deletions cgkit/build.sh
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.
22 changes: 22 additions & 0 deletions cgkit/meta.yaml
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

0 comments on commit c8754b2

Please sign in to comment.