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
|
{
"name": "Expect",
"description": "Program that can automate interactive applications",
"url": "https://downloads.sourceforge.net/project/expect/Expect/5.45.4/expect5.45.4.tar.gz",
"mirror": null,
"homepage": "https://expect.sourceforge.io/",
"depends": [
{
"depend": "autoconf",
"build-depend": true
},
{
"depend": "automake",
"build-depend": true
},
{
"depend": "libtool",
"build-depend": true
}
],
"resource": [],
"conflicts": [],
"patches": [],
"install": [
"args = %W[",
"--prefix=#{prefix}",
"--exec-prefix=#{prefix}",
"--mandir=#{man}",
"--enable-shared",
"--enable-64bit",
"--with-tcl=#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework",
"]",
"ENV.prepend \"CFLAGS\", \"-I#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework/Versions/8.5/Headers/tcl-private\"",
"system \"autoreconf\", \"--force\", \"--install\", \"--verbose\"",
"system \"./configure\", *args",
"system \"make\"",
"system \"make\", \"install\"",
"lib.install_symlink Dir[lib/\"expect*/libexpect*\"]"
],
"version": "5.45.4",
"file": "expect.rb"
}
|