lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit d2ed4fab64c2169230bc4c3cfa451778d163c54f
parent 9a0f7d611dc5d31baf6d4fa8711c77bf0ed0f492
Author: Steven Barth <steven@midlink.org>
Date:   Sat,  3 Oct 2015 10:42:58 +0200

Merge pull request #1812 from MikePetullo/grilo

grilo: add new package
Diffstat:
Amultimedia/grilo/Makefile | 68++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+), 0 deletions(-)

diff --git a/multimedia/grilo/Makefile b/multimedia/grilo/Makefile @@ -0,0 +1,68 @@ +# +# Copyright (C) 2009-2015 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=grilo +PKG_VERSION:=0.2.14 +PKG_RELEASE:=1 + +PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org> + +PKG_LICENSE:=LGPLv2.1 +PKG_LICENSE_FILES:=COPYING + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_URL:=https://download.gnome.org/sources/grilo/0.2/ +PKG_MD5SUM:=7eba405ada20fefcb877d534d9d4f + +PKG_BUILD_DEPENDS:=glib2 libsoup libxml2 + +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/nls.mk + +TARGET_LDFLAGS+= \ + -Wl,-rpath-link=$(STAGING_DIR)/usr/lib + +define Package/grilo + SECTION:=multimedia + CATEGORY:=Multimedia + TITLE:=grilo + URL:=https://wiki.gnome.org/Projects/Grilo + DEPENDS:=+glib2 +libsoup +libxml2 +endef + +define Package/grilo/decription + Grilo is a framework that provides access to different sources of + multimedia content, using a pluggable system. +endef + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include/ + $(CP) \ + $(PKG_INSTALL_DIR)/usr/include/grilo-0.2/ \ + $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib/ + $(CP) \ + $(PKG_INSTALL_DIR)/usr/lib/*.so* \ + $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/ + $(INSTALL_DATA) \ + $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \ + $(1)/usr/lib/pkgconfig/ +endef + +define Package/grilo/install + $(INSTALL_DIR) $(1)/usr/lib/ + $(CP) \ + $(PKG_INSTALL_DIR)/usr/lib/*.so* \ + $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,grilo))