diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-19 15:54:56 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-19 15:54:56 +0000 |
commit | bf12b6e6609cccbb464fe86a648ba8020f256267 (patch) | |
tree | 664443716df31a190d5d1b1744931f94f507f2e9 /media-libs/alsa-lib | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-bf12b6e6609cccbb464fe86a648ba8020f256267.tar.gz gentoo-2-bf12b6e6609cccbb464fe86a648ba8020f256267.tar.bz2 gentoo-2-bf12b6e6609cccbb464fe86a648ba8020f256267.zip |
*** empty log message ***
Diffstat (limited to 'media-libs/alsa-lib')
-rw-r--r-- | media-libs/alsa-lib/alsa-lib-0.5.9.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild b/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild new file mode 100644 index 000000000000..710047b4c706 --- /dev/null +++ b/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild,v 1.1 2000/08/19 15:54:55 achim Exp $ + +P=alsa-lib-0.5.9 +A=${P}.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="Advanced Linux Sound Architecture / Library" +SRC_URI="ftp://ftp.alsa-project.org/pub/lib/"${A} +HOMEPAGE="http://www.alsa-project.org/" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + ./configure --host=${CHOST} --prefix=/usr + make +} + +src_install() { + cd ${S} + make DESTDIR=${D} install + dodoc ChangeLog COPYING +} + + + + |