32 lines
599 B
Bash
32 lines
599 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python{3_3,3_4,3_5,3_6} )
|
|
PYTHON_REQ_USE="ncurses"
|
|
|
|
inherit autotools git-r3
|
|
|
|
DESCRIPTION="Powerful command-line bookmark manager. Your mini-web!"
|
|
HOMEPAGE="https://github.com/jarun/buku"
|
|
EGIT_REPO_URI="https://github.com/jarun/${PN}"
|
|
EGIT_CLONE_TYPE=shallow
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
dev-python/urllib3
|
|
>=dev-python/beautifulsoup-4.0
|
|
dev-python/cryptography
|
|
dev-python/requests
|
|
"
|
|
|
|
src_prepare() {
|
|
export PREFIX="/usr"
|
|
default
|
|
}
|