-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanope-make.expect
55 lines (40 loc) · 1.3 KB
/
anope-make.expect
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
#!/usr/bin/expect
set timeout -1
spawn ./Config
expect "In what directory should Anope be installed?"
send "/home/ircd/unrealircd/services\r"
expect {
"does not exist. Create it?" {
send "y\r"
expect "Which group should all Services data files be owned by?"
send "ircd\r"
}
"Which group should all Services data files be owned by?" {
send "ircd\r"
}
}
expect "What should the default umask for data files be (in octal)?"
send "007\r"
expect "Would you like to build a debug version of Anope?"
send "n\r"
expect "Do you want to build using precompiled headers?"
send "n\r"
expect "Are there any extra include directories you wish to use?"
send "NONE\r"
expect "Are there any extra library directories you wish to use?"
send "NONE\r"
expect "Are there any extra arguments you wish to pass to CMake?"
send "NONE\r"
expect "Would you like to utilize run-cc.pl?"
send "n\r"
expect "the build, but uses more disk space."
send "n\r"
expect "If you need no extra include directories, enter NONE in all caps."
send "NONE\r"
expect "If you need no extra library directories, enter NONE in all caps."
send "NONE\r"
expect "If you need no extra arugments to CMake, enter NONE in all caps."
send "NONE\r"
# Saving configuration results in config.cache... done.
# done
expect eof