summaryrefslogtreecommitdiff
path: root/template/meta.yaml
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-05-27 14:16:59 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-05-27 14:16:59 -0400
commit023f5b23eca4bbacbf001d1c187f2cb53ba8137a (patch)
tree672d4109a1b0bdfcf0aa94c62e44c151be9e4bbf /template/meta.yaml
parentcba385fc0b72de6d145a2ec7200afa5e05a9b7d5 (diff)
downloadastroconda-contrib-023f5b23eca4bbacbf001d1c187f2cb53ba8137a.tar.gz
Add template recipe
Diffstat (limited to 'template/meta.yaml')
-rw-r--r--template/meta.yaml40
1 files changed, 40 insertions, 0 deletions
diff --git a/template/meta.yaml b/template/meta.yaml
new file mode 100644
index 0000000..463077e
--- /dev/null
+++ b/template/meta.yaml
@@ -0,0 +1,40 @@
+{% set name = '' %}
+{% set version = '' %}
+{% set number = '0' %}
+
+about:
+ # Package homepage
+ home:
+ # Package license
+ license:
+ # A brief description
+ summary:
+
+package:
+ # Define these values above
+ name: {{ name }}
+ version: {{ version }}
+
+build:
+ # Define this value above
+ number: {{ number }}
+
+source:
+ fn: {{ name }}-{{ version }}.tar.gz
+ url: http://example.com/example/{{ name }}-{{ version }}.tar.gz
+
+requirements:
+ build:
+ # Dependencies required at BUILD-TIME go here
+ - setuptools
+ - python x.x
+ run:
+ # Dependencies required at RUN-TIME go here
+ # - ...
+
+#test:
+# imports:
+# # - (e.g. a_python_module)
+#
+# commands:
+# # - (e.g. program --help)