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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
--!The Make-like install Utility based on Lua
--
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you under the Apache License, Version 2.0 (the
-- "License"); you may not use this file except in compliance
-- with the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file install.lua
--
-- imports
import("core.base.option")
import("core.project.target")
import("test")
import(".utils.filter")
import("prefix")
-- install the given package
function main(package)
-- get working directory of this package
local workdir = package:cachedir()
-- enter the working directory
local oldir = nil
if #package:urls() > 0 then
-- only one root directory? skip it
local filedirs = os.filedirs(path.join(workdir, "source", "*"))
if #filedirs == 1 and os.isdir(filedirs[1]) then
oldir = os.cd(filedirs[1])
else
oldir = os.cd(path.join(workdir, "source"))
end
end
if not oldir then
os.mkdir(workdir)
oldir = os.cd(workdir)
end
-- init tipname
local tipname = package:name()
if package:version_str() then
tipname = tipname .. "-" .. package:version_str()
end
-- trace
cprintf("${yellow} => ${clear}installing %s .. ", tipname)
if option.get("verbose") then
print("")
end
-- install it
try
{
function ()
-- the package scripts
local scripts =
{
package:script("install_before")
, package:script("install")
, package:script("install_after")
}
-- create the install task
local installtask = function ()
-- uninstall it from the prefix directory first
prefix.uninstall(package)
-- build and install package to the install directory
local installedfile = path.join(package:installdir(), "installed.txt")
if not os.isfile(installedfile) then
-- clean install directory first
os.tryrm(package:installdir())
-- do install
for i = 1, 3 do
local script = scripts[i]
if script ~= nil then
filter.call(script, package)
end
end
-- mark as installed
io.writefile(installedfile, "")
end
-- install to the prefix directory
prefix.install(package)
-- test it
test(package)
end
-- install package
if option.get("verbose") then
installtask()
else
process.asyncrun(installtask)
end
-- fetch package and force to flush the cache
assert(package:fetch({force = true}), "fetch %s failed!", tipname)
-- trace
cprint("${green}ok")
end,
catch
{
function (errors)
-- verbose?
if option.get("verbose") and errors then
cprint("${bright red}error: ${clear}%s", errors)
end
-- trace
cprint("${red}failed")
-- failed
if not package:requireinfo().optional then
raise("install failed!")
end
end
}
}
-- leave source codes directory
os.cd(oldir)
end
|