blob: 72b496ec3641d294775f78fb70f4a2642ca60783 (
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-2002 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.1.ebuild,v 1.2 2002/10/20 18:49:11 vapier 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 sparc64"
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
}
|