2006-07-22 22:53:26 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libmad
|
|
|
|
PKG_VERSION:=0.15.1b
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/mad \
|
|
|
|
ftp://ftp.mars.org/pub/mpeg/
|
|
|
|
PKG_MD5SUM:=1be543bc30c56fb6bea1d7bf6a64e66c
|
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2006-07-22 22:53:26 +00:00
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
FPM:=default
|
2007-02-02 09:59:40 +00:00
|
|
|
ifeq ($(ARCH),armeb)
|
|
|
|
FPM:=arm
|
|
|
|
endif
|
2006-07-22 22:53:26 +00:00
|
|
|
ifeq ($(ARCH),i386)
|
2006-10-28 22:43:08 +00:00
|
|
|
FPM:=intel
|
2006-07-22 22:53:26 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),mipsel)
|
2006-10-28 22:43:08 +00:00
|
|
|
FPM:=mips
|
2006-07-22 22:53:26 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
define Package/libmad
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=An high-quality MPEG audio decoding library
|
2006-10-28 22:43:08 +00:00
|
|
|
DESCRIPTION:=\
|
|
|
|
MAD is a high-quality MPEG audio decoder. It currently supports \\\
|
|
|
|
MPEG-1 and the MPEG-2 extension to lower sampling frequencies, \\\
|
|
|
|
as well as the de facto MPEG 2.5 format. All three audio layers - \\\
|
|
|
|
Layer I, Layer II, and Layer III (i.e. MP3) - are fully implemented.
|
2006-07-22 22:53:26 +00:00
|
|
|
URL:=http://www.underbit.com/products/mad/
|
|
|
|
endef
|
|
|
|
|
2007-07-31 10:49:03 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--enable-fpm="$(FPM)" \
|
|
|
|
--disable-debugging \
|
|
|
|
--enable-speed \
|
2006-07-22 22:53:26 +00:00
|
|
|
|
2007-07-31 10:49:03 +00:00
|
|
|
MAKE_FLAGS += \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
2006-07-22 22:53:26 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/mad.h $(STAGING_DIR)/usr/include/
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmad.{a,so*} $(STAGING_DIR)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/UninstallDev
|
|
|
|
rm -rf \
|
|
|
|
$(STAGING_DIR)/usr/include/mad.h \
|
|
|
|
$(STAGING_DIR)/usr/lib/libmad.{a,so*}
|
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/libmad/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-10-28 22:43:08 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmad.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2006-07-22 22:53:26 +00:00
|
|
|
$(eval $(call BuildPackage,libmad))
|