diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-02-14 06:03:39 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-02-14 06:03:39 +0000 |
commit | e78666460e9df1a780b70712aa83c8d12730c2b6 (patch) | |
tree | fd12a3ecced5d4cdfe34d6d8649d32aa460c8981 /media-sound/ssrc/ssrc-1.29.ebuild | |
parent | ~hppa (diff) | |
download | gentoo-2-e78666460e9df1a780b70712aa83c8d12730c2b6.tar.gz gentoo-2-e78666460e9df1a780b70712aa83c8d12730c2b6.tar.bz2 gentoo-2-e78666460e9df1a780b70712aa83c8d12730c2b6.zip |
Sample-rate converter for PCM streams. Ebuild submitted by Felix Riemann <felix@hsgheli.de> in bug #30976.
Diffstat (limited to 'media-sound/ssrc/ssrc-1.29.ebuild')
-rw-r--r-- | media-sound/ssrc/ssrc-1.29.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-sound/ssrc/ssrc-1.29.ebuild b/media-sound/ssrc/ssrc-1.29.ebuild new file mode 100644 index 000000000000..f723d1183579 --- /dev/null +++ b/media-sound/ssrc/ssrc-1.29.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ssrc/ssrc-1.29.ebuild,v 1.1 2004/02/14 06:03:39 eradicator Exp $ + +S=${WORKDIR} +DESCRIPTION="A fast and high quality sampling rate converter" +HOMEPAGE="http://shibatch.sourceforge.net" +SRC_URI="http://shibatch.sf.net/download/ssrc-1.29.zip" +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc" +RDEPEND="virtual/glibc" + +src_compile() { + append-flags -lm + # Local CFLAGS should overwrite the ones in the Makefile + emake -e || die +} + +src_install() { + dobin ssrc + dobin ssrc_hp + dodoc ssrc.txt history.txt +} |