summaryrefslogtreecommitdiff
path: root/python/python-mad_0.5.1.oe
diff options
context:
space:
mode:
Diffstat (limited to 'python/python-mad_0.5.1.oe')
-rw-r--r--python/python-mad_0.5.1.oe20
1 files changed, 20 insertions, 0 deletions
diff --git a/python/python-mad_0.5.1.oe b/python/python-mad_0.5.1.oe
index e69de29bb2..d66ef530c7 100644
--- a/python/python-mad_0.5.1.oe
+++ b/python/python-mad_0.5.1.oe
@@ -0,0 +1,20 @@
+DESCRIPTION=Python libmad Bindings
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core libmad
+DEPENDS=virtual/libc libmad
+SRCNAME=pymad
+
+SRC_URI = http://spacepants.org/src/pymad/download/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
+do_configure_prepend() {
+ touch Setup
+ echo "endian = little" >>Setup # FIXME, not always true
+ echo "mad_libs = mad" >>Setup
+ echo "mad_lib_dir = ${STAGING_LIBDIR}" >>Setup
+ echo "mad_include_dir = ${STAGING_INCDIR}" >>Setup
+}