Signed-off-by: Sascha Hauer <s.ha...@pengutronix.de>
---
 rules/mpd.in   |  55 ++++++++++++++++++++++++++
 rules/mpd.make | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 176 insertions(+)
 create mode 100644 rules/mpd.in
 create mode 100644 rules/mpd.make

diff --git a/rules/mpd.in b/rules/mpd.in
new file mode 100644
index 0000000..24d63fb
--- /dev/null
+++ b/rules/mpd.in
@@ -0,0 +1,55 @@
+## SECTION=multimedia_sound
+
+menuconfig MPD
+       tristate
+       prompt "Music Player Daemon (MPD)     "
+       select ALSA_LIB if MPD_ALSA
+       select LIBID3TAG if MPD_ID3
+       select LIBMAD if MPD_MAD
+       select MPG123 if MPD_MPG123
+       select LIBOGG if MPD_VORBIS
+       select LIBVORBIS if MPD_VORBIS
+       select FLAC if MPD_FLAC
+       select LIBCURL if MPD_CURL
+       select SQLITE if MPD_SQLITE
+       help
+         Music Player Daemon (MPD) is a flexible, powerful, server-side
+         application for playing music. Through plugins and libraries it
+         can play a variety of sound files while being controlled by its
+         network protocol.
+
+if MPD
+
+config MPD_ALSA
+       prompt "MPD Alsa support"
+       bool
+
+config MPD_ID3
+       prompt "MPD ID3 support"
+       bool
+
+config MPD_MAD
+       prompt "MPD MAD support"
+       bool
+
+config MPD_MPG123
+       prompt "MPD MPG123 support"
+       bool
+
+config MPD_VORBIS
+       prompt "MPD Vorbis support"
+       bool
+
+config MPD_FLAC
+       prompt "MPD FLAC support"
+       bool
+
+config MPD_CURL
+       prompt "MPD curl support"
+       bool
+
+config MPD_SQLITE
+       prompt "MPD SQLite support"
+       bool
+
+endif
diff --git a/rules/mpd.make b/rules/mpd.make
new file mode 100644
index 0000000..d63c325
--- /dev/null
+++ b/rules/mpd.make
@@ -0,0 +1,121 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Sascha Hauer <s.ha...@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_MPD) += mpd
+
+#
+# Paths and names
+#
+MPD_VERSION    := 0.17.5
+MPD_MD5                := b70230c1c810ce85a824332f0ac40a8f
+MPD            := mpd-$(MPD_VERSION)
+MPD_SUFFIX     := tar.gz
+MPD_URL                := 
http://www.musicpd.org/download/mpd/0.17/$(MPD).$(MPD_SUFFIX)
+MPD_SOURCE     := $(SRCDIR)/$(MPD).$(MPD_SUFFIX)
+MPD_DIR                := $(BUILDDIR)/$(MPD)
+MPD_LICENSE    := unknown
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+#$(MPD_SOURCE):
+#      @$(call targetinfo)
+#      @$(call get, MPD)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+MPD_ENABLE-$(PTXCONF_MPD_ALSA) += alsa
+MPD_ENABLE-$(PTXCONF_MPD_FFMPEG) += ffmpeg
+MPD_ENABLE-$(PTXCONF_MPD_ID3) += id3
+MPD_ENABLE-$(PTXCONF_MPD_MAD) += mad
+MPD_ENABLE-$(PTXCONF_MPD_MPG123) += mpg123
+MPD_ENABLE-$(PTXCONF_MPD_CURL) += curl
+MPD_ENABLE-$(PTXCONF_MPD_SQLITE) += sqlite
+
+MPD_ENABLEC-y     += $(MPD_ENABLE-y)
+MPD_ENABLEC-      += $(MPD_ENABLE-)
+MPD_ENABLEP-y     += $(MPD_ENABLE-y)
+
+MPD_CONF_ENV   := $(CROSS_ENV)
+
+#
+# autoconf
+#
+MPD_CONF_TOOL  := autoconf
+MPD_CONF_OPT   := $(CROSS_AUTOCONF_USR)
+
+ifneq ($(call remove_quotes,$(MPD_ENABLEC-y)),)
+MPD_CONF_OPT +=  --enable-$(subst $(space),$(space)--enable-,$(strip 
$(MPD_ENABLEC-y)))
+endif
+
+ifneq ($(call remove_quotes,$(MPD_ENABLEC-)),)
+MPD_CONF_OPT +=  --disable-$(subst $(space),$(space)--disable-,$(strip 
$(MPD_ENABLEC-)))
+endif
+
+$(STATEDIR)/mpd.prepare:
+       @$(call targetinfo)
+       @$(call clean, $(MPD_DIR)/config.cache)
+       cd $(MPD_DIR) && \
+               $(MPD_PATH) $(MPD_CONF_ENV) \
+               ./configure $(MPD_CONF_OPT)
+       @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+#$(STATEDIR)/mpd.compile:
+#      @$(call targetinfo)
+#      @$(call world/compile, MPD)
+#      @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+#$(STATEDIR)/mpd.install:
+#      @$(call targetinfo)
+#      @$(call world/install, MPD)
+#      @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/mpd.targetinstall:
+       @$(call targetinfo)
+
+       @$(call install_init, mpd)
+       @$(call install_fixup, mpd,PRIORITY,optional)
+       @$(call install_fixup, mpd,SECTION,base)
+       @$(call install_fixup, mpd,AUTHOR,"Sascha Hauer 
<s.ha...@pengutronix.de>")
+       @$(call install_fixup, mpd,DESCRIPTION,missing)
+
+       @$(call install_copy, mpd, 0, 0, 0755, $(MPD_DIR)/src/mpd, /usr/bin/mpd)
+
+       @$(call install_finish, mpd)
+
+       @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+#$(STATEDIR)/mpd.clean:
+#      @$(call targetinfo)
+#      @$(call clean_pkg, MPD)
+
+# vim: syntax=make
-- 
1.8.4.rc3


-- 
ptxdist mailing list
ptxdist@pengutronix.de

Reply via email to