diff options
-rw-r--r-- | app-editors/featherpad/featherpad-0.5.7.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app-editors/featherpad/featherpad-0.5.7.ebuild b/app-editors/featherpad/featherpad-0.5.7.ebuild new file mode 100644 index 00000000..5beed73c --- /dev/null +++ b/app-editors/featherpad/featherpad-0.5.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /dev-util/notepadqq-9999.ebuild,v 0.1 frostwork $ + +EAPI=5 +inherit eutils qmake-utils git-r3 + +DESCRIPTION="Lightweight Qt5 Plain-Text Editor for Linux" +EGIT_REPO_URI="https://github.com/tsujan/FeatherPad.git" +EGIT_COMMIT="c7f62469af0222a3cedefbb39278e4f80077dcfb" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtsvg:5 +" +DEPEND="${RDEPEND}" + +src_configure() { + eqmake5 PREFIX="${EPREFIX}/usr" fp.pro +} + +src_install() { + make INSTALL_ROOT=${D} install || die +} |