mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-29 09:34:58 +03:00
08edcf23c9
It is no longer hard coded into the atom.desktop.in file; the individual grunt tasks now determine how the executable is accessed.
54 lines
1.9 KiB
CoffeeScript
54 lines
1.9 KiB
CoffeeScript
fs = require 'fs'
|
|
path = require 'path'
|
|
_ = require 'underscore-plus'
|
|
|
|
module.exports = (grunt) ->
|
|
{spawn} = require('./task-helpers')(grunt)
|
|
|
|
fillTemplate = (filePath, data) ->
|
|
template = _.template(String(fs.readFileSync("#{filePath}.in")))
|
|
filled = template(data)
|
|
|
|
outputPath = path.join(grunt.config.get('atom.buildDir'), path.basename(filePath))
|
|
grunt.file.write(outputPath, filled)
|
|
outputPath
|
|
|
|
getInstalledSize = (buildDir, callback) ->
|
|
cmd = 'du'
|
|
args = ['-sk', path.join(buildDir, 'Atom')]
|
|
spawn {cmd, args}, (error, {stdout}) ->
|
|
installedSize = stdout.split(/\s+/)?[0] or '200000' # default to 200MB
|
|
callback(null, installedSize)
|
|
|
|
grunt.registerTask 'mkdeb', 'Create debian package', ->
|
|
done = @async()
|
|
buildDir = grunt.config.get('atom.buildDir')
|
|
|
|
if process.arch is 'ia32'
|
|
arch = 'i386'
|
|
else if process.arch is 'x64'
|
|
arch = 'amd64'
|
|
else
|
|
return done("Unsupported arch #{process.arch}")
|
|
|
|
{name, version, description} = grunt.file.readJSON('package.json')
|
|
section = 'devel'
|
|
maintainer = 'GitHub <atom@github.com>'
|
|
installDir = '/usr'
|
|
iconName = 'atom'
|
|
executable = path.join(installDir, 'share', 'atom', 'atom')
|
|
getInstalledSize buildDir, (error, installedSize) ->
|
|
data = {name, version, description, section, arch, maintainer, installDir, iconName, installedSize, executable}
|
|
controlFilePath = fillTemplate(path.join('resources', 'linux', 'debian', 'control'), data)
|
|
desktopFilePath = fillTemplate(path.join('resources', 'linux', 'atom.desktop'), data)
|
|
icon = path.join('resources', 'atom.png')
|
|
|
|
cmd = path.join('script', 'mkdeb')
|
|
args = [version, arch, controlFilePath, desktopFilePath, icon, buildDir]
|
|
spawn {cmd, args}, (error) ->
|
|
if error?
|
|
done(error)
|
|
else
|
|
grunt.log.ok "Created #{buildDir}/atom-#{version}-#{arch}.deb"
|
|
done()
|