blob: 6ee5ef8c69c991834e5f8a1680204f5dd80ca1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.01-r1.ebuild,v 1.6 2003/08/13 15:58:54 agriffis Exp $
DESCRIPTION="UCL: The UCL Compression Library"
SRC_URI="http://www.oberhumer.com/opensource/ucl/download/ucl-1.01.tar.gz"
HOMEPAGE="http://www.oberhumer.com/opensource/ucl/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~sparc hppa alpha"
src_compile() {
econf
emake || die
}
src_install() {
make install DESTDIR=${D} || die
}
|