diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-23 08:18:42 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-23 08:18:42 +0000 |
commit | 0a11a28335b73a06f26379822ce88aae6f1f4954 (patch) | |
tree | 8351b0b432463d4162054c5691ae8e5adcdbda10 /python/pyvorbis_1.3.oe | |
parent | 9cab31775d14a06c80c354650d27855a1fdc92db (diff) |
Packaging fixes, pass 2.
BKrev: 4010d8e2zRgIc2lz8zqu_17RxVRQ9g
Diffstat (limited to 'python/pyvorbis_1.3.oe')
-rw-r--r-- | python/pyvorbis_1.3.oe | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/python/pyvorbis_1.3.oe b/python/pyvorbis_1.3.oe index e69de29bb2..6111c0306c 100644 --- a/python/pyvorbis_1.3.oe +++ b/python/pyvorbis_1.3.oe @@ -0,0 +1,21 @@ +DESCRIPTION=Python Vorbis Bindings +SECTION="base" +PRIORITY="optional" +MAINTAINER="Michael Lauer <mickey@Vanille.de>" +RDEPENDS=libc6 python-core libvorbis pyogg +DEPENDS=virtual/libc libvorbis pyogg + +SRC_URI = http://www.andrewchatham.com/pyogg/download/${P}.tar.gz \ + file://${FILESDIR}/disable-oggcheck.patch;patch=1 + +inherit distutils + +do_configure_prepend() { + touch Setup + echo "ogg_libs = ogg" >>Setup + echo "ogg_lib_dir = ${STAGING_LIBDIR}" >>Setup + echo "ogg_include_dir = ${STAGING_INCDIR}" >>Setup + echo "vorbis_libs = vorbis vorbisfile vorbisenc" >>Setup + echo "vorbis_lib_dir = ${STAGING_LIBDIR}" >>Setup + echo "vorbis_include_dir = ${STAGING_INCDIR}" >>Setup +} |