Files
cherb-overlay/app-editors/kakoune/kakoune-9999.ebuild

36 lines
641 B
Bash

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/surf/surf-9999.ebuild,v 1.3 2014/09/16 19:23:43 jer Exp $
EAPI=5
inherit eutils git-2 toolchain-funcs
DESCRIPTION="Console text editor"
HOMEPAGE="http://kakoune.org/"
EGIT_REPO_URI="https://github.com/mawww/kakoune.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
COMMON_DEPEND="
dev-libs/boost
sys-libs/ncurses
"
DEPEND="
${COMMON_DEPEND}
"
RDEPEND="
${COMMON_DEPEND}
"
src_compile() {
cd ./src
emake || die "emake failed"
}
src_install () {
cd ./src
emake DESTDIR="${D}" install
}