aboutsummaryrefslogtreecommitdiff
path: root/tests/data/test.ini
blob: b5f6ccadcf2c96b89c59c5f118a3c4d0412061e6 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[cbc_cgi]
local_server: true
local_port: 8888
local_sources: /srv/conda/sources
protocol: http
url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port}

[package]
name: test
version: 1.0.0
release: 1

[about]
home: http://example.com/${package:name}
license: GPL
summary: ${package:name} is a test package
readme: README.md

[source]
fn: ${package:name}-${package:version}.tar.gz
url: ${cbc_cgi:url}/${fn}

[build]
number: 1


[cbc_build]
prefix: /usr/local
win_prefix: c:\anaconda3\


linux:
	#find . -type f -name "*.py" -exec "sed -i 's|beep|bloop|g'" {} \;
	for x in *.py
	do
		echo "$$x"
	done
	(./configure --prefix=${prefix} ; \
	make ; \
	make install )

darwin:
	find . -type f -name "*.py" -exec "sed -i 's|blat|splat|g'" {} \;
	./configure --prefix=${prefix}
	make
	make install

windows:
	rem oh no, windows!
	echo "ow it hurts"
	nmake /D_PREFIX=${win_prefix}