summaryrefslogtreecommitdiff
blob: 13e84bcebf4929e4e3dfb7cfee4b682baa2081a7 (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Joshua Pollak <pardsbane@offthehill.org>
# /home/cvsroot/gentoo-x86/sys-apps/less/less-358-r2.ebuild,v 1.1 2001/02/07 15:51:27 achim Exp

A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Extracts files from Microsoft .cab files."
SRC_URI="http://www.kyz.uklinux.net/downloads/${A}"
HOMEPAGE="http://www.kyz.uklinux.net/cabextract.php3"

DEPEND=""

src_compile() {

    try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man
    try pmake

}

src_install() {

	dobin cabextract

	doman cabextract.1

	dodoc COPYING NEWS README TODO AUTHORS
}