-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.js
38 lines (32 loc) · 961 Bytes
/
install.js
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
define(function(require, exports, module) {
module.exports.version = 1;
module.exports = function(session, options){
//session.introduction = require("text!./intro.html");
//session.preInstallScript = require("text!./check-deps.sh");
// libclang pkgs
var pkgs = ['llvm-3.5', 'llvm-3.5-dev', 'llvm-3.5-runtime', 'libclang-3.5-dev', 'libclang1-3.5'];
for (var i = 0; i < pkgs.length; ++i) {
session.install({
"name": pkgs[i],
"description": "Plugin Dependency",
"cwd": "~/.c9"
}, {
"install": [
{
"ubuntu": pkgs[i]
}
]
});
}
// clang_tool npm package
session.install({
"name": "clang_tool",
"description": "Native nodejs libclang bindings",
"cwd": "~/.c9"
}, {
"npm": "clang_tool"
});
// Show the installation screen
session.start();
};
});