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.2 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:=2
  11. PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  12. PKG_LICENSE:=GPL-2.0
  13. PKG_LICENSE_FILES:=COPYING
  14. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  15. PKG_SOURCE_URL:=https://www.flyn.org/projects/lcdgrilo
  16. PKG_HASH:=2e5028fff7a90b1a3688c466f048e978a52d9a4da20a382546d5e5bd42e2fc6a
  17. PKG_BUILD_DEPENDS:=vala
  18. PKG_INSTALL:=1
  19. PKG_FIXUP:=autoreconf
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/nls.mk
  22. define Package/lcdgrilo
  23. SECTION:=multimedia
  24. CATEGORY:=Multimedia
  25. DEPENDS:=+grilo +grilo-plugins +libgee +libgstreamer1
  26. TITLE:=lcdgrilo
  27. URL:=http://www.flyn.org/projects/lcdgrilo/
  28. endef
  29. define Package/lcdgrilo/decription
  30. A simple Grilo-based audio player meant to run on a Raspberry Pi with a PiFace CAD
  31. endef
  32. define Package/lcdgrilo/install
  33. $(INSTALL_DIR) $(1)/usr/bin
  34. $(INSTALL_DIR) $(1)/etc/init.d
  35. $(CP) \
  36. $(PKG_INSTALL_DIR)/usr/bin/lcdgrilo \
  37. $(1)/usr/bin/
  38. $(INSTALL_BIN) ./files/lcdgrilo.init $(1)/etc/init.d/lcdgrilo
  39. endef
  40. $(eval $(call BuildPackage,lcdgrilo))