blob: b1cf62f652230d54ed1636361023c2286ac92ff7 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/xxdi/xxdi-1.0.0.ebuild,v 1.6 2013/12/24 12:52:13 ago Exp $
EAPI=5
MODULE_VERSION=001
DESCRIPTION="Simple alternative to vim's 'xxd -i' mode"
HOMEPAGE="https://github.com/gregkh/xxdi"
SRC_URI="https://github.com/gregkh/xxdi/archive/v${MODULE_VERSION}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE=""
RDEPEND="dev-lang/perl
dev-perl/File-Slurp"
S=${WORKDIR}/${PN}-${MODULE_VERSION}
src_install() {
dobin xxdi.pl
dodoc README.md
}
|