diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-30 21:17:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-30 21:17:37 -0400 |
commit | f7b063a33fb7e5e708e4924c399779dcc45ee333 (patch) | |
tree | cadcd793e1a4772a9a6d5ad495bbe495d0e06dc7 /relic | |
parent | c0897cbbfdf083fda8fe006bcf3d9596f4d7903a (diff) | |
download | astroconda-contrib-f7b063a33fb7e5e708e4924c399779dcc45ee333.tar.gz |
Add relic recipe
Diffstat (limited to 'relic')
-rw-r--r-- | relic/bld.bat | 2 | ||||
-rw-r--r-- | relic/build.sh | 1 | ||||
-rw-r--r-- | relic/meta.yaml | 27 |
3 files changed, 30 insertions, 0 deletions
diff --git a/relic/bld.bat b/relic/bld.bat new file mode 100644 index 0000000..2d6c912 --- /dev/null +++ b/relic/bld.bat @@ -0,0 +1,2 @@ +python setup.py install +if errorlevel 1 exit 1 diff --git a/relic/build.sh b/relic/build.sh new file mode 100644 index 0000000..5c61be1 --- /dev/null +++ b/relic/build.sh @@ -0,0 +1 @@ +python setup.py install || exit 1 diff --git a/relic/meta.yaml b/relic/meta.yaml new file mode 100644 index 0000000..f8a7fc3 --- /dev/null +++ b/relic/meta.yaml @@ -0,0 +1,27 @@ +{% set name = 'relic' %} +{% set version = '1.0.5' %} +{% set number = '0' %} + +about: + home: http://github.com/jhunkeler/relic + license: BSD + summary: Release I Control, for git +build: + number: {{ number }} +package: + name: {{ name }} + version: {{ version }} +requirements: + build: + - setuptools + - python x.x + run: + - python x.x +source: + git_tag: {{ version }} + git_url: https://github.com/jhunkeler/relic.git +test: + imports: + - relic + - relic.release + - relic.git |