30 lines
912 B
Bash
30 lines
912 B
Bash
# Template file for 'atom'
|
|
pkgname=atom
|
|
version=1.8.0
|
|
revision=1
|
|
nocross=yes
|
|
nostrip=yes
|
|
hostmakedepends="git pkg-config python-devel nodejs git-perl"
|
|
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"
|
|
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
|
checksum=2950820b2c7ab658135e9cb7c003ff2074ec0a38ac3b324d85cc20bcb237e61f
|
|
|
|
broken=yes # doesn't happen on local builds
|
|
only_for_archs="i686 x86_64"
|
|
|
|
do_build() {
|
|
sed -i -e "/exception-reporting/d" \
|
|
-e "/metrics/d" package.json
|
|
script/build
|
|
}
|
|
do_install() {
|
|
script/grunt install --install-dir ${DESTDIR}/usr
|
|
sed -i "s|${DESTDIR}||g" ${DESTDIR}/usr/share/applications/atom.desktop
|
|
vlicense LICENSE.md
|
|
# remove useless static libs
|
|
find ${DESTDIR} -type f -name \*.a -delete
|
|
}
|