blob: aa9af42c4e20959a8cb10261c5dcd57f3ec55985 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.4.ebuild,v 1.4 2003/07/21 15:16:51 tester Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A C library for reading and writing files containing sampled sound"
HOMEPAGE="http://www.zipworld.com.au/~erikd/libsndfile/"
SRC_URI="http://www.zipworld.com.au/~erikd/libsndfile/${P}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="x86 sparc ~ppc amd64"
DEPEND="virtual/glibc"
src_compile () {
econf || die "configure failed"
make || die "make failed"
}
src_install () {
einstall || die "make install failed"
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
|