diff options
Diffstat (limited to 'cbc_test_package')
-rw-r--r-- | cbc_test_package/bld.bat | 3 | ||||
-rw-r--r-- | cbc_test_package/build.sh | 2 | ||||
-rw-r--r-- | cbc_test_package/meta.yaml | 22 |
3 files changed, 27 insertions, 0 deletions
diff --git a/cbc_test_package/bld.bat b/cbc_test_package/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/cbc_test_package/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1
\ No newline at end of file diff --git a/cbc_test_package/build.sh b/cbc_test_package/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/cbc_test_package/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1
\ No newline at end of file diff --git a/cbc_test_package/meta.yaml b/cbc_test_package/meta.yaml new file mode 100644 index 0000000..a88fbf6 --- /dev/null +++ b/cbc_test_package/meta.yaml @@ -0,0 +1,22 @@ +about: + home: http://example.com/cbc_test_package + license: GPL + summary: cbc_test_package is a test package +build: + number: '0' +package: + name: cbc_test_package + version: 1.0.0 +requirements: + build: + - setuptools + - python x.x + run: + - python x.x +source: + fn: cbc_test_package-1.0.0.tar.gz + url: + - https://bitbucket.org/jhunkeler/cbc-recipes/downloads/cbc_test_package-1.0.0.tar.gz +test: + imports: + - cbc_test_package |