diff options
author | Nico Suhl <nico@overninethousand.de> | 2018-01-20 18:55:14 +0100 |
---|---|---|
committer | Nico Suhl <nico@overninethousand.de> | 2018-01-20 18:55:14 +0100 |
commit | 657b7ad770c8792cd3fd633233d331a37f2fff59 (patch) | |
tree | d7431b3c902c3a8491a31a6adc692d593466347f | |
parent | bump atom to version 1.19.0 (diff) | |
download | nico-657b7ad770c8792cd3fd633233d331a37f2fff59.tar.gz nico-657b7ad770c8792cd3fd633233d331a37f2fff59.tar.bz2 nico-657b7ad770c8792cd3fd633233d331a37f2fff59.zip |
bump atom to 1.23.3
-rw-r--r-- | app-editors/atom-bin/atom-bin-1.23.3.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app-editors/atom-bin/atom-bin-1.23.3.ebuild b/app-editors/atom-bin/atom-bin-1.23.3.ebuild new file mode 100644 index 0000000..5d7d17b --- /dev/null +++ b/app-editors/atom-bin/atom-bin-1.23.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit unpacker + +MY_PN="atom" +DESCRIPTION="A hackable text editor for the 21st Century" +HOMEPAGE="https://atom.io" +SRC_URI="https://github.com/atom/atom/releases/download/v${PV}/${MY_PN}-amd64.deb" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +RESTRICT="mirror" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_unpack() { + mkdir -p ${WORKDIR}/${P} + cd ${WORKDIR}/${P} + unpack_deb ${A} +} + +src_install() { + cp -Rp * "${D}" +} |