mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-03 19:32:57 +02:00
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
|
revision=1
|
||||||
nocross=yes
|
nocross=yes
|
||||||
nostrip=yes
|
nostrip=yes
|
||||||
# XXX FAILS EVERYWHERE
|
hostmakedepends="git pkg-config python-devel curl"
|
||||||
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"
|
|
||||||
makedepends="python-devel GConf-devel libgnome-keyring-devel"
|
makedepends="python-devel GConf-devel libgnome-keyring-devel"
|
||||||
short_desc="Chrome-based text editor from Github"
|
short_desc="Chrome-based text editor from Github"
|
||||||
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
|
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
|
||||||
|
@ -15,11 +12,21 @@ license="MIT"
|
||||||
homepage="https://atom.io"
|
homepage="https://atom.io"
|
||||||
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
||||||
checksum=25a64813b2741540fc26dfa0cf82e5769b324c016317fa3ff0593679fd5e88e9
|
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() {
|
do_build() {
|
||||||
script/build
|
script/build
|
||||||
}
|
}
|
||||||
do_install() {
|
do_install() {
|
||||||
|
source ~/.nvm/nvm.sh
|
||||||
|
nvm use $_NODE_VERSION
|
||||||
script/grunt install --install-dir ${DESTDIR}/usr
|
script/grunt install --install-dir ${DESTDIR}/usr
|
||||||
sed -i "s|${DESTDIR}||g" ${DESTDIR}/usr/share/applications/atom.desktop
|
sed -i "s|${DESTDIR}||g" ${DESTDIR}/usr/share/applications/atom.desktop
|
||||||
vlicense LICENSE.md
|
vlicense LICENSE.md
|
||||||
|
|
Loading…
Add table
Reference in a new issue