diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-23 16:30:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-23 16:30:52 -0400 |
commit | f7625cda5d6be046e1ea905bf8858cb0eae6f70f (patch) | |
tree | 4bdb6da29496b34f74a93ee780827ee32d0ca647 /cbc-test-package | |
parent | 8d3230be1d54de8e1d153e1f77a22da8e74d12c1 (diff) | |
download | cbc-recipes-f7625cda5d6be046e1ea905bf8858cb0eae6f70f.tar.gz |
Massive overhaul. Switching to remote URLs.
Diffstat (limited to 'cbc-test-package')
-rw-r--r-- | cbc-test-package/cbc_test_package.ini | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cbc-test-package/cbc_test_package.ini b/cbc-test-package/cbc_test_package.ini new file mode 100644 index 0000000..37491e4 --- /dev/null +++ b/cbc-test-package/cbc_test_package.ini @@ -0,0 +1,36 @@ +[package]
+name: cbc_test_package
+version: 1.0.0
+
+[about]
+home: http://example.com/${package:name}
+license: GPL
+summary: ${package:name} is a test package
+
+[source]
+fn: ${package:name}-${package:version}.tar.gz
+url: https://bitbucket.org/jhunkeler/cbc-recipes/downloads/${fn}
+
+[build]
+number: 1
+
+[requirements]
+build:
+ setuptools
+ python
+
+run:
+ python
+
+[test]
+imports:
+ cbc_test_package
+
+[cbc_build]
+linux:
+ python setup.py install || exit 1
+
+windows:
+ python setup.py install
+ if errorlevel 1 exit 1
+
|