You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2009-2015 OpenWrt.org
  3. # Copyright (C) 2009 Freifunk Leipzig
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=ices
  10. PKG_VERSION:=2.0.2
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  13. PKG_SOURCE_URL:=http://downloads.xiph.org/releases/ices/
  14. PKG_MD5SUM:=832c448cc993170a70fd95804fcda5b2
  15. PKG_LICENSE:=GPL-2.0
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
  18. PKG_FIXUP:=autoreconf
  19. PKG_INSTALL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/ices
  22. SECTION:=sound
  23. CATEGORY:=Sound
  24. TITLE:=ices client for Icecast media streaming servers
  25. URL:=http://www.icecast.org/ices/
  26. DEPENDS:=+libshout +libxml2 +zlib +libogg +libvorbis +alsa-lib
  27. endef
  28. define Package/ices/description
  29. ices is a command line source client for Icecast media streaming servers.
  30. It began as the successor of the old "shout" utility, and has since gained a
  31. lot of useful features.
  32. endef
  33. CONFIGURE_ARGS+= \
  34. --with-ogg="$(STAGING_DIR)/usr/include" \
  35. --with-vorbis="$(STAGING_DIR)/usr/include" \
  36. define Package/ices/install
  37. $(INSTALL_DIR) $(1)/usr/bin
  38. $(CP) $(PKG_INSTALL_DIR)/usr/bin/ices $(1)/usr/bin/
  39. endef
  40. $(eval $(call BuildPackage,ices))