2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/mad \
16 ftp://ftp.mars.org/pub/mpeg/
17 PKG_MD5SUM:=6814b47ceaa99880c754c5195aa1aac1
22 include $(INCLUDE_DIR)/package.mk
24 define Package/madplay
27 DEPENDS:=+libid3tag +libmad
28 TITLE:=MPEG audio player in fixed point
29 URL:=http://sourceforge.net/projects/mad
32 define Package/madplay/description
33 MAD is an MPEG audio decoder. It currently only supports the MPEG 1
34 standard, but fully implements all three audio layers (Layer I, Layer II,
35 and Layer III, the latter often colloquially known as MP3.). There is also
36 full support for ID3 tags.
39 define Build/Configure
40 $(call Build/Configure/Default, \
45 --disable-experimental \
46 --without-libiconv-prefix \
47 --without-libintl-prefix \
55 define Package/madplay/install
56 $(INSTALL_DIR) $(1)/usr/bin
57 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/madplay $(1)/usr/bin/
60 $(eval $(call BuildPackage,madplay))