2015-03-04 15:50:20 +00:00
|
|
|
# Template file for 'atom'
|
|
|
|
pkgname=atom
|
2015-09-26 06:18:07 +00:00
|
|
|
version=1.0.19
|
2015-09-20 07:31:40 +00:00
|
|
|
revision=1
|
2015-04-24 14:52:05 +00:00
|
|
|
nocross=yes
|
2015-04-24 21:01:46 +00:00
|
|
|
nostrip=yes
|
2015-09-19 16:50:55 +00:00
|
|
|
hostmakedepends="git pkg-config python-devel curl"
|
2015-03-08 08:12:02 +00:00
|
|
|
makedepends="python-devel GConf-devel libgnome-keyring-devel"
|
2015-03-04 15:50:20 +00:00
|
|
|
short_desc="Chrome-based text editor from Github"
|
|
|
|
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
|
|
|
|
license="MIT"
|
|
|
|
homepage="https://atom.io"
|
2015-05-25 08:22:29 +00:00
|
|
|
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
2015-09-26 06:18:07 +00:00
|
|
|
checksum=775742460826ab7d6b0ffd035632019041b0a1ae40f47e15f4098241744252b5
|
2015-09-19 17:19:46 +00:00
|
|
|
_NODE_VERSION=0.12.7
|
2015-03-04 15:50:20 +00:00
|
|
|
|
2015-09-19 16:50:55 +00: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
|
2015-09-19 17:19:46 +00:00
|
|
|
nvm install $_NODE_VERSION
|
|
|
|
nvm use $_NODE_VERSION
|
2015-09-19 16:50:55 +00:00
|
|
|
}
|
2015-03-04 15:50:20 +00:00
|
|
|
do_build() {
|
|
|
|
script/build
|
|
|
|
}
|
|
|
|
do_install() {
|
2015-09-19 17:19:46 +00:00
|
|
|
source ~/.nvm/nvm.sh
|
|
|
|
nvm use $_NODE_VERSION
|
2015-03-10 06:49:12 +00:00
|
|
|
script/grunt install --install-dir ${DESTDIR}/usr
|
|
|
|
sed -i "s|${DESTDIR}||g" ${DESTDIR}/usr/share/applications/atom.desktop
|
2015-09-19 16:50:55 +00:00
|
|
|
vlicense LICENSE.md
|
2015-03-08 08:12:02 +00:00
|
|
|
# remove useless static libs
|
|
|
|
find ${DESTDIR} -type f -name \*.a -delete
|
2015-03-04 15:50:20 +00:00
|
|
|
}
|