-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathbase_package.yaml
More file actions
59 lines (49 loc) · 1.35 KB
/
base_package.yaml
File metadata and controls
59 lines (49 loc) · 1.35 KB
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
54
55
56
57
58
59
dependencies:
build:
- when platform == 'linux' and package != 'patchelf':
- patchelf
build_stages:
- name: prologue
handler: bash
bash: |
{{PROLOGUE}}
post_process:
- name: default
hit: [shebang=multiline, write-protect]
- name: config_script
when: relocatable == True
after: [default]
hit: [relative-sh-script=/bin/.*-config]
- name: relative_symlink
when: relocatable == True
after: [default]
hit: [relative-symlinks]
- name: relative_rpath
when: relocatable == True and relative_rpath == True and platform == 'linux'
after: [default]
before: [check]
hit: [relative-rpath, relative-symlinks]
- name: relative_pkg_config
when: relocatable == True and platform == 'linux'
after: [default]
before: [check]
hit: [relative-pkgconfig]
- name: check
when: relocatable == True and platform == 'linux'
after: [default, config_script, relative_symlink]
hit:
- check-relocatable
# Note: replacement \$ -> $ by the build spec runner in run_job.py
- "check-ignore=.*\\.pyc\\$"
- "check-ignore=.*\\.pyo\\$"
- name: insert_location
when: relocatable != True
after: [default]
hit:
- insert-location
profile_links:
- when: platform == 'Cygwin'
name: copy_dlls
copy: 'bin/*.dll'
- name: everything
link: '*/**/*'