summaryrefslogtreecommitdiff
blob: 67cd96ba71996d0c06f493fca78c0c269c5c707e (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit unpacker

DESCRIPTION="PKZIP-compatible compressor focusing on space over speed"
HOMEPAGE="http://www.jonof.id.au/kenutils"
SRC_URI="http://static.jonof.id.au/dl/kenutils/${P}-linux.tar.gz"

LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=""
DEPEND=${RDEPEND}

S="${WORKDIR}/${P}-linux"

QA_PREBUILT="/opt/bin/kzip
	/opt/bin/zipmix"

src_install() {
	exeinto /opt/bin
	if use amd64; then
		doexe x86_64/kzip x86_64/zipmix
	else
		doexe i686/kzip i686/zipmix
	fi

	dodoc readme.txt
}