blob: ae9c1a1031e42ff405bf6e69bc3d1741cccfbfba (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/the_silver_searcher-0.1.ebuild,v 1.1 2012/01/13 19:23:39 ssuominen Exp $
EAPI=4
inherit autotools
DESCRIPTION="A code-searching tool similar to ack, but faster"
HOMEPAGE="http://github.com/ggreer/the_silver_searcher"
SRC_URI="mirror://github/ggreer/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/libpcre"
DEPEND="${RDEPEND}"
DOCS="README.md"
src_unpack() {
unpack ${A}
mv *-${PN}-* "${S}"
}
src_prepare() {
eautoreconf
}
|