From: Oyvind Repvik Date: Wed, 24 Aug 2005 22:59:14 +0000 (+0000) Subject: Update mpd to latest version X-Git-Tag: Release-2010-05/1~9453^2~3814 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d9a48d586c544d2c1da58356a6d92c68a939f7e;p=openembedded.git Update mpd to latest version --- diff --git a/packages/musicpd/mpd_0.11.5.bb b/packages/musicpd/mpd_0.11.5.bb new file mode 100644 index 0000000000..395d69e79e --- /dev/null +++ b/packages/musicpd/mpd_0.11.5.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Music Player Daemon (mpd)" +HOMEPAGE = "http://www.musicpd.org" +LICENSE = "GPLv2" +MAINTAINER = "Chris Larson " +SECTION = "console/multimedia" +DEPENDS = "libvorbis libogg libid3tag libao zlib libmikmod libmad flac audiofile" +PR = "r2" + +SRC_URI = "${SOURCEFORGE_MIRROR}/musicpd/mpd-${PV}.tar.gz" + +inherit autotools + +# Setting --enable-mpd-{mad,id3tag} causes local caches of the libraries to +# be built, instead we use the OE built versions which should be installed +# in staging - remove the --with and replace with --enable to use the local +# versions. + +EXTRA_OECONF = "--enable-ogg \ + --with-id3tag-libraries=${STAGING_LIBDIR} \ + --with-id3tag-includes=${STAGING_INCDIR} \ + --with-mad-libraries=${STAGING_LIBDIR} \ + --with-mad-includes=${STAGING_INCDIR} \ + --without-faad"