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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
--!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("build")
import("test")
import("filter")
-- make package
function _make_package(package)
-- the package name
local name = package:name()
-- the package directory
local packagedir = path.join(package:directory(), name .. ".pkg")
-- the linkdir
local linkdir = path.join(packagedir, "lib/$(mode)/$(plat)/$(arch)")
-- the includedir
local includedir = path.join(packagedir, "inc")
-- the installdir
local installdir = package:installdir()
-- install the library files and ignore hidden files (.xxx)
os.cp(path.join(installdir, "lib"), linkdir)
-- install the header files
os.cp(path.join(installdir, "include"), includedir)
-- get links
local links = {}
for _, filename in ipairs(os.files(path.join(linkdir, target.filename("*", "static"))), path.filename) do
local link = target.linkname(filename)
if link then
table.insert(links, link)
end
end
if #links == 0 then
for _, filename in ipairs(os.files(path.join(linkdir, target.filename("*", "shared"))), path.filename) do
local link = target.linkname(filename)
if link then
table.insert(links, link)
end
end
end
assert(#links > 0, "the library files not found in package %s", name)
-- make xmake.lua
local file = io.open(path.join(packagedir, "xmake.lua"), "w")
if file then
-- the xmake.lua content
local content = [[
-- the %s package
option("%s")
-- show menu
set_showmenu(true)
-- set category
set_category("package")
-- set description
set_description("The %s package")
-- add defines to config.h if checking ok
add_defines_h("$(prefix)_PACKAGE_HAVE_%s")
-- add links for checking
add_links("%s")
-- add link directories
add_linkdirs("lib/$(mode)/$(plat)/$(arch)")
-- add include directories
add_includedirs("inc")
]]
-- save file
file:writef(content, name, name, name, name:upper(), table.concat(links, "\", \""))
-- exit file
file:close()
end
end
-- prepare directories
function _prepare_directories(...)
for _, dir in ipairs({...}) do
os.tryrm(dir)
if not os.isdir(dir) then
os.mkdir(dir)
end
end
end
-- 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
for _, srcdir in ipairs(os.dirs(path.join(workdir, "source", "*"))) do
oldir = os.cd(srcdir)
break
end
else
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 ()
-- prepare the install and package directories
_prepare_directories(package:installdir(), package:directory())
-- build it
build(package)
-- install it
for i = 1, 3 do
local script = scripts[i]
if script ~= nil then
filter.call(script, package)
end
end
-- make package from the install directory
_make_package(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
|