[packages] flac: Disable building of docs and examples
[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_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 FPM:=default
25 ifeq ($(ARCH),armeb)
26 FPM:=arm
27 endif
28 ifeq ($(ARCH),i386)
29 FPM:=intel
30 endif
31 ifeq ($(ARCH),mipsel)
32 FPM:=mips
33 endif
34
35 define Package/libmad
36 SECTION:=libs
37 CATEGORY:=Libraries
38 TITLE:=An high-quality MPEG audio decoding library
39 URL:=http://www.underbit.com/products/mad/
40 DEPENDS:=@BUILD_PATENTED
41 endef
42
43 define Package/libmad/description
44 MAD is a high-quality MPEG audio decoder. It currently supports
45 MPEG-1 and the MPEG-2 extension to lower sampling frequencies,
46 as well as the de facto MPEG 2.5 format. All three audio layers -
47 Layer I, Layer II, and Layer III (i.e. MP3) - are fully implemented.
48 endef
49
50 TARGET_CFLAGS += $(FPIC)
51
52 CONFIGURE_ARGS+= \
53 --enable-shared \
54 --enable-static \
55 --enable-fpm="$(FPM)" \
56 --disable-debugging \
57 --enable-speed \
58
59 # XXX: configure is parsing and "optimizing" CFLAGS, adding unsupported
60 # XXX: compiler args to it (like -fforce-mem)
61 # XXX: so pass an empty one to configure
62 CONFIGURE_VARS+= \
63 CFLAGS="" \
64
65 # XXX: and pass our own to make
66 MAKE_FLAGS+= \
67 CFLAGS="$(TARGET_CFLAGS)" \
68
69 define Build/InstallDev
70 $(INSTALL_DIR) $(1)/usr/include
71 $(CP) $(PKG_INSTALL_DIR)/usr/include/mad.h $(1)/usr/include/
72 $(INSTALL_DIR) $(1)/usr/lib
73 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmad.{a,so*} $(1)/usr/lib/
74 endef
75
76 define Package/libmad/install
77 $(INSTALL_DIR) $(1)/usr/lib
78 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmad.so.* $(1)/usr/lib/
79 endef
80
81 $(eval $(call BuildPackage,libmad))