blob: 98c3fc027656523b948b26cd5d6ba97611578b0e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/unlzx-1.1.ebuild,v 1.24 2005/11/29 03:01:08 vapier Exp $
DESCRIPTION="Unarchiver for Amiga LZX archives"
SRC_URI="ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz.readme"
HOMEPAGE="ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz.readme"
SLOT="0"
LICENSE="freedist"
IUSE=""
KEYWORDS="alpha amd64 ~hppa ppc ~ppc-macos sparc x86"
src_unpack() {
mkdir ${S}
gzip -dc ${DISTDIR}/${PN}.c.gz > ${S}/unlzx.c
cp ${DISTDIR}/${PN}.c.gz.readme ${S}/${PN}.c.gz.readme
}
src_compile() {
gcc ${CFLAGS} -o unlzx unlzx.c || die
}
src_install() {
dobin unlzx
dodoc unlzx.c.gz.readme
}
|