diff options
Diffstat (limited to 'moc/Makefile')
| -rw-r--r-- | moc/Makefile | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/moc/Makefile b/moc/Makefile new file mode 100644 index 0000000..4ac78b9 --- /dev/null +++ b/moc/Makefile @@ -0,0 +1,60 @@ +# +# Copyright (C) 2006-2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +# +# Don't forget: +# +# ./scripts/feeds update +# ./scripts/feeds install iconv libcurl alsa-utils libvorbis usbutils libmad libflac libid3tag +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=moc +PKG_VERSION:=2.4.4 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=ftp://ftp.daper.net/pub/soft/moc/stable/ +PKG_MD5SUM:=647c770a5542a4ae5437386807a89796 + +PKG_FIXUP:=libtool +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/moc + SECTION:=sound + CATEGORY:=Sound + DEPENDS:=+libcurl +BUILD_PATENTED:libmad +libvorbis +libncurses +libiconv +alsa-utils +libid3tag +libflac + TITLE:=Music On Console +endef + +define Package/moc/description + MOC (music on console) is a console audio player for LINUX/UNIX designed to be powerful and easy to use. +endef + +TARGET_CFLAGS+= \ + -I$(STAGING_DIR)/usr/lib/libiconv/include \ + +TARGET_LDFLAGS+= \ + -Wl,-rpath-link=$(STAGING_DIR)/usr/lib \ + -L$(STAGING_DIR)/usr/lib/libiconv/lib + +CONFIGURE_ARGS += \ + --without-mp3 \ + --enable-shared \ + --disable-static \ + --disable-debug + +define Package/moc/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mocp $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/usr/lib/moc/decoder_plugins + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/moc/decoder_plugins/*.so $(1)/usr/lib/moc/decoder_plugins +endef + +$(eval $(call BuildPackage,moc)) |
