aboutsummaryrefslogtreecommitdiff
path: root/tests/data/test.ini
blob: bf8d9048f379b4f70898f1c75860fa792591ce3b (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
[cgi]
local_server: true
local_port: 8888
local_sources: /srv/conda/sources
protocol: http
url: ${cgi:protocol}://localhost:${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: ${cgi:url}/${fn}

[build]
number: 1


[build_ext]
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}