diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-11-29 20:40:40 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-12-13 16:04:15 -0500 |
commit | 4fe08aedce73669d3225c8bbe8dbecc108d91133 (patch) | |
tree | 40c7605c472951fa0e3ef7aa910c7b8a4606c45d /shunit2/meta.yaml | |
parent | d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c (diff) | |
download | astroconda-contrib-4fe08aedce73669d3225c8bbe8dbecc108d91133.tar.gz |
Improve recipe uniformity
Diffstat (limited to 'shunit2/meta.yaml')
-rw-r--r-- | shunit2/meta.yaml | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/shunit2/meta.yaml b/shunit2/meta.yaml index 8688806..671c4a3 100644 --- a/shunit2/meta.yaml +++ b/shunit2/meta.yaml @@ -1,16 +1,26 @@ +{% set name = 'shunit2' %} +{% set version = '2.0.3' %} +{% set number = '0' %} + about: - home: http://sourceforge.net/projects/shunit2 + home: http://sourceforge.net/projects/{{version}} license: LGPL - summary: shunit2 + summary: | + shUnit2 is a xUnit unit test framework for Bourne based shell + scripts, and it is designed to work in a similar manner to JUnit, + PyUnit, etc + build: - number: '0' + number: {{number}} + package: - name: shunit2 - version: 2.0.3 + name: {{name}} + version: {{version}} + source: - fn: shunit2-2.0.3.tgz - url: - - https://downloads.sourceforge.net/shunit2/shunit2-2.0.3.tgz + fn: {{name}}-{{version}}.tgz + url: https://downloads.sourceforge.net/{{name}}/{{name}}-{{version}}.tgz + test: commands: - shunit2 --help |