-
Notifications
You must be signed in to change notification settings - Fork 522
/
gulpfile.js
181 lines (156 loc) · 5.86 KB
/
gulpfile.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
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
var path = require('path');
var gulp = require('gulp');
var shelljs = require('shelljs');
var mergeStream = require('merge-stream');
var runSequence = require('run-sequence');
var manifest = require('./src/package.json');
var NwBuilder = require('nw-builder');
var srcDir = path.resolve('./src');
var nwOptions = {
version: 'latest',
flavor: 'normal',
appName: 'Koala',
appVersion: manifest.version,
};
// Build for macOS
gulp.task(`build:osx64`, function(callback) {
var nw = new NwBuilder(Object.assign(nwOptions, {
files: [
`${srcDir}/**`,
`!${srcDir}/app/assets/{less,test}/**`,
`!${srcDir}/app/templates/**`,
`!${srcDir}/ruby/**`,
],
platforms: ['osx64'],
macIcns: path.resolve('./assets-osx/icon.icns'),
macPlist: {
NSHumanReadableCopyright: 'koala-app.com',
CFBundleIdentifier: 'com.koala-app.koala',
},
}));
nw.on('log', console.log.bind(console));
nw.build(callback);
});
// Build for linux
[32, 64].forEach(function(arch) {
gulp.task(`build:linux${arch}`, function(callback) {
var nw = new NwBuilder(Object.assign(nwOptions, {
files: [
`${srcDir}/**`,
`!${srcDir}/app/assets/{less,test}/**`,
`!${srcDir}/app/templates/**`,
`!${srcDir}/ruby/**`,
],
platforms: [`linux${arch}`],
}));
nw.on('log', console.log.bind(console));
nw.build(callback);
});
});
// Build for win32
// On macOS/Linux, you need Wine installed to build win32 (or remove winIco below)
gulp.task(`build:win32`, function(callback) {
var nw = new NwBuilder(Object.assign(nwOptions, {
files: [
`${srcDir}/**`,
`!${srcDir}/app/assets/{less,test}/**`,
`!${srcDir}/app/templates/**`,
`!${srcDir}/ruby/{include,share}/**`,
`!${srcDir}/ruby/lib/{pkgconfig,tcltk}/**`,
],
platforms: ['win32'],
winIco: process.argv.indexOf('--noicon') > 0 ? null : path.resolve('./assets-windows/icon.ico'),
zip: false,
}));
nw.on('log', console.log.bind(console));
nw.build(callback);
});
// Only runs on macOS (requires XCode properly configured)
gulp.task('sign:osx64', ['build:osx64'], function() {
// shelljs.exec('codesign -v -f -s "Alexandru Rosianu Apps" ./build/Koala/osx64/Koala.app/Contents/Frameworks/*');
// shelljs.exec('codesign -v -f -s "Alexandru Rosianu Apps" ./build/Koala/osx64/Koala.app');
// shelljs.exec('codesign -v --display ./build/Koala/osx64/Koala.app');
// shelljs.exec('codesign -v --verify ./build/Koala/osx64/Koala.app');
});
// Create a DMG for osx64
// Only works on macOS because of appdmg
gulp.task('pack:osx64', ['sign:osx64'], function() {
shelljs.mkdir('-p', './dist'); // appdmg fails if ./dist doesn't exist
shelljs.rm('-f', './dist/Koala.dmg'); // appdmg fails if the dmg already exists
return gulp.src([])
.pipe(require('gulp-appdmg')({
source: './assets-osx/dmg.json',
target: './dist/Koala.dmg',
}));
});
// Create a NSIS installer for win32
// Must have `makensis` installed
gulp.task('pack:win32', ['build:win32'], function() {
shelljs.exec('makensis ./assets-windows/installer.nsi');
});
// Create packages for linux
[32, 64].forEach(function(arch) {
gulp.task(`prepare:linux${arch}`, [`build:linux${arch}`], function() {
shelljs.rm('-rf', `./build/linux${arch}`);
const move_data = gulp.src([
'./assets-linux/koala.desktop',
`./build/Koala/linux${arch}/**`,
])
.pipe(gulp.dest(`./build/linux${arch}/usr/share/koala`));
const move_icons = gulp.src('./assets-linux/icons/**')
.pipe(gulp.dest(`./build/linux${arch}/usr/share/icons`));
return mergeStream(move_data, move_icons);
});
['deb', 'rpm'].forEach(function(target) {
gulp.task(`pack:linux${arch}:${target}`, [`prepare:linux${arch}`], function() {
const port = arch == 32 ? 'i386' : 'x86_64';
shelljs.mkdir('-p', './dist'); // it fails if the dir doesn't exist
shelljs.exec("'" + [
'fpm',
'--output-type', target,
'--input-type', 'dir',
'--chdir', `./build/linux${arch}`,
'--package', `./dist/koala_${manifest.version}_${port}.${target}`,
'--force',
'--name', 'koala',
'--version', manifest.version,
'--license', 'Apache',
'--vendor', '',
'--category', 'devel',
'--depends', 'ruby >= 1.8.7',
'--architecture', port,
'--maintainer', 'Ethan Lai <lain.z.q@gmail.com>',
'--description', 'A cool tool for web developers.\nKoala is a GUI application for Less, Sass, Compass and CoffeeScript compilation, to help web developers to use them more efficient.',
'--url', 'http://koala-app.com',
'--after-install', './assets-linux/after-install.sh',
'--after-remove', './assets-linux/after-remove.sh',
'--deb-priority', 'optional',
'--rpm-os', 'linux',
'.',
].join("' '") + "'");
});
});
gulp.task(`pack:linux${arch}:targz`, [`prepare:linux${arch}`], function() {
const port = arch == 32 ? 'i386' : 'x86_64';
shelljs.mkdir('-p', './dist'); // it fails if the dir doesn't exist
shelljs.exec(`tar -czf './dist/koala_${manifest.version}_${port}.tar.gz' -C './build/linux${arch}' .`);
});
});
// Make packages for all platforms
gulp.task('pack:all', function(callback) {
runSequence('pack:osx64', 'pack:win32', 'pack:linux', callback);
});
// Make packages for linux platforms
gulp.task('pack:linux', function(callback) {
runSequence('pack:linux32:deb', 'pack:linux64:deb', 'pack:linux32:rpm', 'pack:linux64:rpm', 'pack:linux32:targz', 'pack:linux64:targz', callback);
});
// Build osx64 and run it
gulp.task('run:osx64', ['build:osx64'], function() {
shelljs.exec('open ./build/Koala/osx64/Koala.app');
});
// Run osx64 without building
gulp.task('open:osx64', function() {
shelljs.exec('open ./build/Koala/osx64/Koala.app');
});
// Make packages for all platforms by default
gulp.task('default', ['pack:all']);