void-packages/srcpkgs/atom/template
2015-12-11 22:24:24 +01:00

35 lines
1 KiB
Bash

# Template file for 'atom'
pkgname=atom
version=1.3.1
revision=1
nocross=yes
nostrip=yes
hostmakedepends="git pkg-config python-devel curl"
makedepends="python-devel GConf-devel libgnome-keyring-devel"
short_desc="Chrome-based text editor from Github"
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
license="MIT"
homepage="https://atom.io"
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
checksum=ce80fb8a7402e1aca25d1e256d2ed82c83fdfe29866501e628ecb057594a4690
_NODE_VERSION=0.12.7
pre_build() {
local NVM_VERSION=0.26.1
curl -o- https://raw.githubusercontent.com/creationix/nvm/v$NVM_VERSION/install.sh | bash
source ~/.nvm/nvm.sh
nvm install $_NODE_VERSION
nvm use $_NODE_VERSION
}
do_build() {
script/build
}
do_install() {
source ~/.nvm/nvm.sh
nvm use $_NODE_VERSION
script/grunt install --install-dir ${DESTDIR}/usr
sed -i "s|${DESTDIR}||g" ${DESTDIR}/usr/share/applications/atom.desktop
vlicense LICENSE.md
# remove useless static libs
find ${DESTDIR} -type f -name \*.a -delete
}