void-packages/srcpkgs/atom/template

25 lines
751 B
Text

# Template file for 'atom'
pkgname=atom
version=0.186.0
revision=1
hostmakedepends="git nodejs pkg-config python-devel"
makedepends="python-devel GConf-devel libgnome-keyring-devel"
short_desc="Chrome-based text editor from Github"
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
license="MIT"
homepage="https://atom.io"
do_fetch() {
local url="git://github.com/${pkgname}/${pkgname}"
msg_normal "Fetching source from $url ...\n"
git clone --branch v${version} ${url} ${pkgname}-${version}
}
do_build() {
script/build
}
do_install() {
script/grunt install --install-dir ${PKGDESTDIR}/usr
sed -i "s|${PKGDESTDIR}||" ${PKGDESTDIR}/usr/share/applications/atom.desktop
# remove useless static libs
find ${DESTDIR} -type f -name \*.a -delete
}