blob: f5c488904f645065a35915acc84e48ea8874e2e3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/multimux/multimux-0.2.3.ebuild,v 1.1 2005/08/27 21:35:18 pvdabeel Exp $
IUSE=""
DESCRIPTION="combines up to 8 audio mono wave ch. into one big multi ch. wave file."
HOMEPAGE="http://ip51cf87c4.direct-adsl.nl/panteltje/dvd/"
SRC_URI="http://ip51cf87c4.direct-adsl.nl/panteltje/dvd/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND=""
src_compile() {
emake CFLAGS="$CFLAGS" || die "emake failed"
}
src_install() {
dobin multimux multidemux
dodoc CHANGES LICENSE README
}
|