forked from Dadoum/Provision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.sdl
71 lines (52 loc) · 1.63 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
70
71
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 "requests" version="~>2"
dependency "slf4d" version="~>2"
configuration "plist-d" {
dependency "plist" version="~master"
}
configuration "libplist" {
versions "LibPlist"
dependency "plist-d" repository="git+https://github.com/Dadoum/libplist-d.git" version="a0f5b393e517ef236263184d9002670b82a00401"
}
subPackage {
name "retrieve-headers"
targetType "executable"
targetPath "bin"
workingDirectory "bin"
sourcePaths "retrieve_headers"
dependency "provision" version="*"
// lflags "/usr/x86_64-w64-mingw32ucrt/sys-root/mingw/lib/libws2_32.a" "/usr/x86_64-w64-mingw32ucrt/sys-root/mingw/lib/libmincore.a" "/usr/x86_64-w64-mingw32ucrt/sys-root/mingw/lib/libwsock32.a" platform="gdc"
}
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="linux-ldc"
dflags "--link-defaultlib-shared=false" platform="ldc"
dflags "-defaultlib=:libgphobos.a" platform="gdc"
}
}