Update vpnc to 0.4.0, thanks to Swen Kuhnlein
[openwrt/svn-archive/archive.git] / sound / madplay / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=madplay
12 PKG_VERSION:=0.15.2b
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/mad \
17 ftp://ftp.mars.org/pub/mpeg/
18 PKG_MD5SUM:=6814b47ceaa99880c754c5195aa1aac1
19 PKG_CAT:=zcat
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
22 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/madplay
27 SECTION:=sound
28 CATEGORY:=Sound
29 DEPENDS:=+libid3tag +libmad
30 TITLE:=MPEG audio player in fixed point
31 DESCRIPTION:=\
32 MAD is an MPEG audio decoder. It currently only supports the MPEG 1 \\\
33 standard, but fully implements all three audio layers (Layer I, Layer II, \\\
34 and Layer III, the latter often colloquially known as MP3.). There is also \\\
35 full support for ID3 tags.
36 URL:=http://sourceforge.net/projects/mad
37 endef
38
39 define Build/Configure
40 $(call Build/Configure/Default, \
41 --enable-shared \
42 --disable-static \
43 --disable-debugging \
44 --disable-profiling \
45 --disable-experimental \
46 --without-libiconv-prefix \
47 --without-libintl-prefix \
48 --without-alsa \
49 --without-esd \
50 , \
51 LIBS="-lz" \
52 )
53 endef
54
55 define Build/Compile
56 $(MAKE) -C $(PKG_BUILD_DIR) \
57 DESTDIR="$(PKG_INSTALL_DIR)" \
58 all install
59 endef
60
61 define Package/madplay/install
62 $(INSTALL_DIR) $(1)/usr/bin
63 $(CP) $(PKG_INSTALL_DIR)/usr/bin/madplay $(1)/usr/bin/
64 endef
65
66 $(eval $(call BuildPackage,madplay))