diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-10-08 19:24:31 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-10-08 19:24:31 +0100 |
commit | 3c3253af4336e8152de3ef61ef63f2a30e4a578f (patch) | |
tree | 21b3ca7243571381ab8af5dbd22aa8651053ec42 /app-editors/notepadqq/notepadqq-1.4.8.ebuild | |
parent | b99f1ebc5e3b0785d9ab9d517481f5138b8e258e (diff) |
app-editors/notepadqq : version bump
Diffstat (limited to 'app-editors/notepadqq/notepadqq-1.4.8.ebuild')
-rw-r--r-- | app-editors/notepadqq/notepadqq-1.4.8.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-editors/notepadqq/notepadqq-1.4.8.ebuild b/app-editors/notepadqq/notepadqq-1.4.8.ebuild new file mode 100644 index 00000000..7c50b727 --- /dev/null +++ b/app-editors/notepadqq/notepadqq-1.4.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit eutils qmake-utils + +DESCRIPTION="Notepad++-like editor for Linux" +SRC_URI="https://github.com/notepadqq/notepadqq/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtscript:5 + dev-qt/qtwidgets:5 + dev-qt/qtwebkit:5 + dev-qt/qtsvg:5 +" +DEPEND="${RDEPEND}" + +src_configure() { + eqmake5 PREFIX="${EPREFIX}/usr" ${PN}.pro +} + +src_install() { + make INSTALL_ROOT=${D} install || die +} |