blob: 6c4ea3c9876971230c6b8561557191f07c5fe040 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools bash-completion-r1 git-r3
DESCRIPTION="A fast unix command line interface to WWW"
LICENSE="public-domain"
HOMEPAGE="
https://gitlab.com/surfraw/Surfraw
"
EGIT_REPO_URI="https://gitlab.com/surfraw/Surfraw.git"
SLOT="0"
KEYWORDS=""
RESTRICT="test"
RDEPEND="
dev-lang/perl
"
DOCS=(
AUTHORS ChangeLog HACKING NEWS README TODO
)
PATCHES=(
"${FILESDIR}"/${PN}-2.3.0-completion.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf --with-elvidir='$(datadir)'/surfraw
}
src_install() {
default
newbashcomp surfraw-bash-completion ${PN}
bashcomp_alias ${PN} sr
docinto examples
dodoc examples/README examples/uzbl_load_url_from_surfraw
}
|