blob: dff88875c7591b3efe2751a3e844b1a887c0cd7a (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/zopfli/zopfli-1.0.0.ebuild,v 1.3 2014/08/10 01:43:12 patrick Exp $
EAPI="5"
inherit toolchain-funcs
DESCRIPTION="Compression library programmed in C to perform very good, but slow, deflate or zlib compression"
HOMEPAGE="https://code.google.com/p/zopfli/"
SRC_URI="https://${PN}.googlecode.com/files/${P}.zip"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="app-arch/unzip"
src_compile() {
# Show what we run for a more verbose build log.
local command="$(tc-getCC) src/${PN}/*.c -o ${PN} \
-W -Wall -Wextra -ansi -pedantic -lm ${CFLAGS} ${LDFLAGS}"
echo ${command} ; ${command} || die "Compilation failed."
}
src_install() {
dobin ${PN}
dodoc README CONTRIBUTORS
insinto /usr/include/${PN}/
doins src/${PN}/*.h
}
|