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
|
{
"name": "Dovecot",
"description": "IMAP/POP3 server",
"url": "https://www.dovecot.org/releases/2.3/dovecot-2.3.5.1.tar.gz",
"mirror": null,
"homepage": "https://dovecot.org/",
"depends": [
{
"depend": "openssl",
"build-depend": false
}
],
"resource": [
{
"name": "pigeonhole",
"url": "https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-0.5.5.tar.gz"
}
],
"conflicts": [],
"patches": [],
"install": [
"args = %W[",
"--prefix=#{prefix}",
"--disable-dependency-tracking",
"--libexecdir=#{libexec}",
"--sysconfdir=#{etc}",
"--localstatedir=#{var}",
"--with-bzlib",
"--with-pam",
"--with-sqlite",
"--with-ssl=openssl",
"--with-zlib",
"]",
"system \"./configure\", *args",
"system \"make\", \"install\"",
"resource(\"pigeonhole\").stage do",
"args = %W[",
"--disable-dependency-tracking",
"--with-dovecot=#{lib}/dovecot",
"--prefix=#{prefix}",
"]",
"system \"./configure\", *args",
"system \"make\"",
"system \"make\", \"install\""
],
"version": "2.3.5.1",
"file": "dovecot.rb"
}
|