void-packages/srcpkgs/atom/template

36 lines
1.0 KiB
Bash
Raw Normal View History

2015-03-04 16:50:20 +01:00
# Template file for 'atom'
pkgname=atom
2015-12-19 11:52:57 +01:00
version=1.3.2
2015-09-20 09:31:40 +02:00
revision=1
2015-04-24 16:52:05 +02:00
nocross=yes
2015-04-24 23:01:46 +02:00
nostrip=yes
hostmakedepends="git pkg-config python-devel curl"
makedepends="python-devel GConf-devel libgnome-keyring-devel"
2015-03-04 16:50:20 +01:00
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"
2015-12-19 11:52:57 +01:00
checksum=2f8eacb8f4e388062d7adeedaabb91299c357d7fe85bfabab9905c0508295cfb
_NODE_VERSION=0.12.7
2015-03-04 16:50:20 +01:00
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
}
2015-03-04 16:50:20 +01:00
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
2015-09-19 18:50:55 +02:00
vlicense LICENSE.md
# remove useless static libs
find ${DESTDIR} -type f -name \*.a -delete
2015-03-04 16:50:20 +01:00
}