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. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=lcdgrilo
  9. PKG_VERSION:=0.0.12
  10. PKG_RELEASE:=4
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://www.flyn.org/projects/lcdgrilo
  13. PKG_HASH:=2e5028fff7a90b1a3688c466f048e978a52d9a4da20a382546d5e5bd42e2fc6a
  14. PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  15. PKG_LICENSE:=GPL-2.0-or-later
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. PKG_BUILD_DEPENDS:=vala/host
  21. include $(INCLUDE_DIR)/package.mk
  22. include $(INCLUDE_DIR)/nls.mk
  23. define Package/lcdgrilo
  24. SECTION:=multimedia
  25. CATEGORY:=Multimedia
  26. DEPENDS:=+grilo +grilo-plugins +gstreamer1-libs +libgee +libgstreamer1
  27. TITLE:=lcdgrilo
  28. URL:=https://www.flyn.org/projects/lcdgrilo/
  29. endef
  30. define Package/lcdgrilo/decription
  31. A simple Grilo-based audio player meant to run on a Raspberry Pi with a PiFace CAD
  32. endef
  33. define Package/lcdgrilo/install
  34. $(INSTALL_DIR) $(1)/usr/bin
  35. $(INSTALL_DIR) $(1)/etc/init.d
  36. $(CP) \
  37. $(PKG_INSTALL_DIR)/usr/bin/lcdgrilo \
  38. $(1)/usr/bin/
  39. $(INSTALL_BIN) ./files/lcdgrilo.init $(1)/etc/init.d/lcdgrilo
  40. endef
  41. $(eval $(call BuildPackage,lcdgrilo))