25 lines
743 B
Bash
25 lines
743 B
Bash
# Template file for 'atom'
|
|
pkgname=atom
|
|
version=0.188.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 ${DESTDIR}/usr
|
|
sed -i "s|${DESTDIR}||g" ${DESTDIR}/usr/share/applications/atom.desktop
|
|
# remove useless static libs
|
|
find ${DESTDIR} -type f -name \*.a -delete
|
|
}
|