[packages] mocp: revert libffmpeg-mini dependency to virtual libffmpeg
[packages.git] / sound / 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 PKG_MD5SUM:=647c770a5542a4ae5437386807a89796
17
18 PKG_FIXUP:=autoreconf
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22 include $(INCLUDE_DIR)/nls.mk
23
24 define Package/moc
25   SECTION:=sound
26   CATEGORY:=Sound
27   DEPENDS:=+libcurl +BUILD_PATENTED:libmad +libvorbis $(ICONV_DEPENDS) +alsa-utils +libid3tag +libflac +libsamplerate +PACKAGE_libncursesw:libncursesw +!PACKAGE_libncursesw:libncurses +libffmpeg
28   TITLE:=Music On Console
29   URL:=http://moc.daper.net/
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))