atom: unbreak build
- Unbreak build - Revert "atom: broken temporarily." This reverts commitffe2024b31
. - Revert "atom: restrict to x86_64 for now." This reverts commit759fd69e00
. - Revert "atom: update to 1.1.0." This reverts commitedd8217052
.
This commit is contained in:
parent
16c6b18bfb
commit
01d2d82b6a
1 changed files with 11 additions and 4 deletions
|
@ -4,10 +4,7 @@ version=1.1.0
|
|||
revision=1
|
||||
nocross=yes
|
||||
nostrip=yes
|
||||
# XXX FAILS EVERYWHERE
|
||||
only_for_archs="x86_64"
|
||||
broken="http://build.voidlinux.eu/builders/x86_64_builder/builds/18095/steps/shell_3/logs/stdio"
|
||||
hostmakedepends="git pkg-config python-devel nodejs"
|
||||
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>"
|
||||
|
@ -15,11 +12,21 @@ license="MIT"
|
|||
homepage="https://atom.io"
|
||||
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
||||
checksum=25a64813b2741540fc26dfa0cf82e5769b324c016317fa3ff0593679fd5e88e9
|
||||
_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
|
||||
|
|
Loading…
Reference in a new issue