diff options
author | Rene Wagner <rw@handhelds.org> | 2005-08-27 00:35:47 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-27 00:35:47 +0000 |
commit | c9310255bcef16e59907891f5ef65a897bd52297 (patch) | |
tree | 8202942e8390597aa917e22fc0de92b109611d79 /packages/musicpd/mpd_0.11.5.bb | |
parent | 5da3f4af1e4e6b558b6249b9db7ba89306ed9db2 (diff) | |
parent | bfe154780c963a74e76688b840786da3ffe3fbe2 (diff) |
merge of bdbeb53fb07854a8484b17504b9ab11113e0fe51
and fda50be34c5e8aeb2a40fcb38520b83eea2db043
Diffstat (limited to 'packages/musicpd/mpd_0.11.5.bb')
-rw-r--r-- | packages/musicpd/mpd_0.11.5.bb | 23 |
1 files changed, 23 insertions, 0 deletions
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 <kergoth@handhelds.org>" +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" |