60 lines
1.8 KiB
Bash
60 lines
1.8 KiB
Bash
# Template file for 'atom'
|
|
pkgname=atom
|
|
version=1.19.0
|
|
revision=1
|
|
nocross=yes
|
|
nostrip=yes
|
|
hostmakedepends="git pkg-config python-devel nodejs curl"
|
|
makedepends="python-devel GConf-devel libgnome-keyring-devel libX11-devel libxkbfile-devel libsecret-devel"
|
|
short_desc="Chrome-based text editor from Github"
|
|
maintainer="Orphaned <orphan@voidlinux.eu>"
|
|
license="MIT"
|
|
homepage="https://atom.io"
|
|
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
|
checksum=233b699eac07b098627dfef064da4836b5d595796403ae07bcdce2d9cf7cc114
|
|
|
|
only_for_archs="i686 x86_64"
|
|
|
|
broken="https://build.voidlinux.eu/builders/x86_64_builder/builds/4126/steps/shell_3/logs/stdio"
|
|
|
|
pre_build() {
|
|
local NVM_VERSION=0.33.2
|
|
local NODE_VERSION=6
|
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v$NVM_VERSION/install.sh | bash
|
|
source $HOME/.nvm/nvm.sh
|
|
nvm install $NODE_VERSION
|
|
nvm use $NODE_VERSION
|
|
|
|
sed -e "s/<%= description %>/$pkgdesc/" \
|
|
-e "s|<%= appName %>|Atom|"\
|
|
-e "s|<%= installDir %>/share/<%= appFileName %>|/usr/bin|"\
|
|
-e "s|<%= iconPath %>|atom|"\
|
|
resources/linux/atom.desktop.in > resources/linux/Atom.desktop
|
|
}
|
|
do_build() {
|
|
script/build || script/build # FIXME: bug with overlayfs, build twice to fix
|
|
}
|
|
|
|
do_install() {
|
|
vbin atom.sh atom
|
|
vinstall resources/linux/Atom.desktop 644 usr/share/applications atom.desktop
|
|
vinstall resources/app-icons/stable/png/1024.png 644 usr/share/pixmaps atom.png
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*) targetarch=i386;;
|
|
x86_64*) targetarch=amd64;;
|
|
*) targetarch=$hostarch;;
|
|
esac
|
|
|
|
|
|
vmkdir usr/share/atom
|
|
ls -lah
|
|
vcopy out/atom-$version-$targetarch/* usr/share/atom
|
|
vlicense LICENSE.md
|
|
|
|
ln -s /usr/share/atom/resources/app/apm/node_modules/.bin/apm "$DESTDIR/usr/bin/apm"
|
|
|
|
# remove useless static libs
|
|
find ${DESTDIR} -type f -name \*.a -delete
|
|
}
|