[packages] libmad: remove private libtool copy
[openwrt/svn-archive/archive.git] / libs / libmad / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libmad
11 PKG_VERSION:=0.15.1b
12 PKG_RELEASE:=3
13
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:=1be543bc30c56fb6bea1d7bf6a64e66c
18
19 PKG_FIXUP:=libtool
20 PKG_REMOVE_FILES:=aclocal.m4 ltmain.sh
21
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 FPM:=default
27 ifeq ($(ARCH),armeb)
28 FPM:=arm
29 endif
30 ifeq ($(ARCH),i386)
31 FPM:=intel
32 endif
33 ifeq ($(ARCH),mipsel)
34 FPM:=mips
35 endif
36
37 define Package/libmad
38 SECTION:=libs
39 CATEGORY:=Libraries
40 TITLE:=An high-quality MPEG audio decoding library
41 URL:=http://www.underbit.com/products/mad/
42 DEPENDS:=@BUILD_PATENTED
43 endef
44
45 define Package/libmad/description
46 MAD is a high-quality MPEG audio decoder. It currently supports
47 MPEG-1 and the MPEG-2 extension to lower sampling frequencies,
48 as well as the de facto MPEG 2.5 format. All three audio layers -
49 Layer I, Layer II, and Layer III (i.e. MP3) - are fully implemented.
50 endef
51
52 TARGET_CFLAGS += $(FPIC)
53
54 CONFIGURE_ARGS+= \
55 --enable-shared \
56 --enable-static \
57 --enable-fpm="$(FPM)" \
58 --disable-debugging \
59 --enable-speed \
60
61 # XXX: configure is parsing and "optimizing" CFLAGS, adding unsupported
62 # XXX: compiler args to it (like -fforce-mem)
63 # XXX: so pass an empty one to configure
64 CONFIGURE_VARS+= \
65 CFLAGS="" \
66
67 # XXX: and pass our own to make
68 MAKE_FLAGS+= \
69 CFLAGS="$(TARGET_CFLAGS)" \
70
71 define Build/InstallDev
72 $(INSTALL_DIR) $(1)/usr/include
73 $(CP) $(PKG_INSTALL_DIR)/usr/include/mad.h $(1)/usr/include/
74 $(INSTALL_DIR) $(1)/usr/lib
75 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmad.{a,so*} $(1)/usr/lib/
76 endef
77
78 define Package/libmad/install
79 $(INSTALL_DIR) $(1)/usr/lib
80 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmad.so.* $(1)/usr/lib/
81 endef
82
83 $(eval $(call BuildPackage,libmad))