forked from Dadoum/Provision
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.sdl
69 lines (50 loc) · 1.38 KB
/
dub.sdl
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
name "provision"
description "Set of tools interracting with Apple servers."
authors "Dadoum"
copyright "Copyright © 2023, Dadoum"
targetType "library"
targetPath "bin"
sourcePaths "lib"
importPaths "lib"
dependency "slf4d" version="~>2.1.1"
configuration "plist-d" {
dependency "plist" version="~master"
}
configuration "libplist" {
versions "LibPlist"
dependency "plist-d" repository="git+https://github.com/Dadoum/libplist-d.git" version="d494cf3fe79a2bb20583173c0c8cf85ef33b719e"
}
subPackage {
name "retrieve-headers"
targetType "executable"
targetPath "bin"
workingDirectory "bin"
sourcePaths "retrieve_headers"
dependency "provision" version="*"
}
subPackage {
name "mkcassette"
targetType "executable"
targetPath "bin"
workingDirectory "bin"
sourcePaths "mkcassette"
dependency "provision" version="*"
}
subPackage {
name "anisette-server"
targetType "executable"
targetPath "bin"
workingDirectory "bin"
sourcePaths "anisette_server"
dependency "provision" version="*"
dependency "handy-httpd" version="~>5.2.1"
configuration "default" {
targetType "executable"
}
configuration "static" {
targetType "executable"
lflags "-lz" platform="ldc"
dflags "--link-defaultlib-shared=false" platform="ldc"
dflags "-defaultlib=:libgphobos.a" platform="gdc"
}
}