-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.atpkg
More file actions
136 lines (120 loc) · 3.47 KB
/
Copy pathbuild.atpkg
File metadata and controls
136 lines (120 loc) · 3.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
;; Copyright (c) 2016 Anarchy Tools Contributors.
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http:;;www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;; The build file for all of the targets of the Anarchy Tools package manager.
(package
:name "atpm"
:import-packages ["atpkg/build.atpkg"]
:version "1.2.4"
:tasks {
:default {
:tool "nop"
:dependencies ["atpm" "build-tests" "run-tests"]
}
:atpmtools {
:tool "atllbuild"
:sources ["atpm_tools/**.swift"]
:link-with-product ["atfoundation.a"]
:dependencies ["atfoundation.atfoundation"]
:name "atpm_tools"
:output-type "static-library"
:compile-options ["-enable-testing" "-DDEBUG" "-g"]
:overlays {
:bootstrap-osx {
:bootstrap-only true
:llbuildyaml "bootstrap/bootstrap-macosx-atpm_tools.swift-build"
}
:bootstrap-linux {
:bootstrap-only true
:swiftc-path "/usr/local/bin/swiftc"
:link-sdk false
:llbuildyaml "bootstrap/bootstrap-linux-atpm_tools.swift-build"
}
}
}
:atpm {
:tool "atllbuild"
:sources ["atpm/src/**.swift"]
:name "atpm"
:output-type "executable"
:link-with-product ["atpkg.a" "atpm_tools.a" "atfoundation.a"]
:dependencies ["atpkg.atpkg" "atpmtools"]
:publish-product true
:compile-options ["-DDEBUG" "-g"]
:overlays {
:bootstrap-osx {
:bootstrap-only true
:llbuildyaml "bootstrap/bootstrap-macosx.swift-build"
}
:bootstrap-linux {
:bootstrap-only true
:swiftc-path "/usr/local/bin/swiftc"
:link-sdk false
:llbuildyaml "bootstrap/bootstrap-linux.swift-build"
}
:static {
:link-options ["-static-stdlib"]
}
}
}
:atbin {
:tool "packageatbin"
:atllbuild-task "atpm"
:platforms ["all"]
:name "atpm"
:compress true
}
:package-linux {
:only-platforms ["linux"]
:tool "package-deb.attool"
:name "atpm"
:dependencies ["atbin"]
:recommends "git, coreutils, curl, ca-certificates"
}
:package-osx {
:only-platforms ["osx"]
:tool "package-homebrew.attool"
:dependencies ["atbin"]
:name "atpm"
:github-project "AnarchyTools/atpm"
}
:package {
:tool "nop"
:dependencies ["package-linux" "package-osx"]
}
:toolcheck {
:tool "shell"
:dependencies ["atpm"]
:script "bash tests/atpm/test.sh"
}
:check {
:tool "nop"
:dependencies ["run-tests" "toolcheck"]
}
:build-tests {
:tool "atllbuild"
:sources ["tests/atpm_tools/**.swift"]
:output-type "executable"
:name "tests"
:dependencies ["atpmtools"]
:xctestify true
:xctest-strict true
:link-with-product ["atpm_tools.a" "atfoundation.a"]
}
:run-tests {
:tool "xctestrun"
:test-executable ".atllbuild/products/tests"
:dependencies ["build-tests"]
}
}
)