diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-01-29 09:17:20 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-01-29 09:17:20 +0000 |
commit | b15a2a14af7ab67c0b91766f429d28cbad2d348d (patch) | |
tree | bb27f4bc6d797892b792f4ca8e6f3b49d58105c7 /app-text/simplenote/simplenote-1.0.8.ebuild | |
parent | a867a2be555755f3635f326c1d1ea5bd3e5ed6c0 (diff) |
add simplenote
Diffstat (limited to 'app-text/simplenote/simplenote-1.0.8.ebuild')
-rw-r--r-- | app-text/simplenote/simplenote-1.0.8.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-text/simplenote/simplenote-1.0.8.ebuild b/app-text/simplenote/simplenote-1.0.8.ebuild new file mode 100644 index 00000000..64a22a2a --- /dev/null +++ b/app-text/simplenote/simplenote-1.0.8.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils unpacker + +DESCRIPTION="The simplest way to keep notes" +HOMEPAGE="https://github.com/Automattic/simplenote-electron" +SRC_URI="https://github.com/Automattic/simplenote-electron/releases/download/v${PV}/${P}.deb" + +LICENSE="GPL2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="dev-libs/nss + media-libs/alsa-lib + x11-libs/gtk+:2 + x11-libs/libXtst + x11-libs/libnotify" +RDEPEND="${DEPEND}" + +RESTRICT="mirror" + +S="${WORKDIR}" + +src_unpack() { + unpack_deb ${A} +} + +src_install() { + mv * "${D}" || die +} |