blob: a0175d44097b9c801e1d94aaa360861aa6c155ac (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils versionator
MY_P="${PN}-$(get_version_component_range 1-2)"
MY_P="${MY_P}-u$(get_version_component_range 3)"
MY_P="${MY_P}-b$(get_version_component_range 4)"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Unix port of Monkey's Audio codec"
HOMEPAGE="http://www.monkeysaudio.com/"
SRC_URI="http://www.genoetigt.de/ape//${MY_P}.tar.gz"
# License status is unclear, see discussion in
# https://bugs.gentoo.org/94477 and 52882
LICENSE="monkeysaudio"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-lang/yasm"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/gcc4.4.patch
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS INSTALL NEWS README TODO
dohtml ${S}/src/Readme.htm
}
|