29 lines
562 B
Bash
29 lines
562 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit autotools git-r3 bash-completion-r1
|
|
|
|
DESCRIPTION="Google Search, Google Site Search, Google News from the terminal"
|
|
HOMEPAGE="https://github.com/jarun/googler"
|
|
EGIT_REPO_URI="https://github.com/jarun/${PN}"
|
|
EGIT_CLONE_TYPE=shallow
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
src_prepare() {
|
|
export PREFIX="/usr"
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
newbashcomp auto-completion/bash/${PN}-completion.bash ${PN}
|
|
}
|