blob: 40e0890e3d68210d2bf59c7fd3ef590600c81dfb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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: 0
[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
|