[packages_10.03.2] softflowd: merge r29100, r29199
[10.03/packages.git] / multimedia / mocp / Makefile
1 #
2 # Copyright (C) 2011 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:=moc
11 PKG_VERSION:=2.4.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=ftp://ftp.daper.net/pub/soft/moc/stable/
16
17 PKG_MD5SUM:=647c770a5542a4ae5437386807a89796
18
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23 include $(INCLUDE_DIR)/nls.mk
24
25 define Package/moc
26   SECTION:=sound
27   CATEGORY:=Sound
28   DEPENDS:=+libcurl +BUILD_PATENTED:libmad +libvorbis $(ICONV_DEPENDS) +alsa-utils +libid3tag +libflac +libsamplerate +PACKAGE_libncursesw:libncursesw +!PACKAGE_libncursesw:libncurses +libffmpeg
29   TITLE:=Music On Console
30 endef
31
32 define Package/moc/description
33         MOC (music on console) is a console audio player for LINUX/UNIX designed to be powerful and easy to use.
34 endef
35
36 define Build/Configure
37         $(call Build/Configure/Default, \
38                 $(if $(CONFIG_BUILD_PATENTED),,--without-mp3) \
39                 --enable-shared \
40                 --disable-static \
41                 --disable-debug \
42         )
43 endef
44
45 define Package/moc/install
46         $(INSTALL_DIR) $(1)/usr/bin
47         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mocp $(1)/usr/bin/
48         $(INSTALL_DIR) $(1)/usr/lib/moc/decoder_plugins
49         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/moc/decoder_plugins/*.so $(1)/usr/lib/moc/decoder_plugins
50 endef
51
52 $(eval $(call BuildPackage,moc))