summaryrefslogtreecommitdiff
path: root/python/pyvorbis_1.3.oe
blob: 6111c0306c0a45d0d14f6779c3811ec2e857841b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
}