# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="LibLZF is a very small data compression library. It consists of only two .c and two .h files and is very easy to incorporate into your own programs. The compression algorithm is very, very fast, yet still written in portable C." SRC_URI="http://www.goof.com/pcg/marc/data/${P}.tar.gz" HOMEPAGE="http://www.goof.com/pcg/marc/liblzf.html" SLOT="0" LICENSE="as-is" KEYWORDS="~x86" DEPEND="" src_compile() { econf || die emake || die } src_install() { make prefix=${D}/usr/ install || die dodoc LICENSE README Changes }