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
|
{
"name": "Curl",
"description": "Get a file from an HTTP, HTTPS or FTP server",
"url": "https://curl.haxx.se/download/curl-7.64.1.tar.bz2",
"mirror": null,
"homepage": "https://curl.haxx.se/",
"depends": [
{
"depend": "autoconf",
"build-depend": true
},
{
"depend": "automake",
"build-depend": true
},
{
"depend": "libtool",
"build-depend": true
},
{
"depend": "pkg-config",
"build-depend": true
}
],
"resource": [],
"conflicts": [],
"patches": [],
"install": [
"system \"./buildconf\" if build.head?",
"args = %W[",
"--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--with-darwinssl",
"--without-ca-bundle",
"--without-ca-path",
"]",
"system \"./configure\", *args",
"system \"make\", \"install\"",
"system \"make\", \"install\", \"-C\", \"scripts\"",
"libexec.install \"lib/mk-ca-bundle.pl\""
],
"version": "7.64.1",
"file": "curl.rb"
}
|