mirror of
https://github.com/novatiq/packages.git
synced 2026-07-24 12:36:03 +01:00
Updates vapigen-generated vapi files to vala-0.34.
Files are now copied to $(STAGING_DIR_HOSTPKG)/share/vala/vapi, without
the vala version being hardcoded.
Removed copyright line, and redundant PKG_BUILD_DEPENDS and
TARGET_LDFLAGS.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
(cherry-picked from 1b794e93e3)
73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
#
|
|
# 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.3.4
|
|
PKG_RELEASE:=3
|
|
|
|
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:=@GNOME/grilo/0.3/
|
|
PKG_HASH:=7c6964053b42574c2f14715d2392a02ea5cbace955eb73e067c77aa3e43b066e
|
|
|
|
PKG_BUILD_DEPENDS:=glib2 libsoup libxml2
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
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.3/ \
|
|
$(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/
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/share/vala/vapi/
|
|
# Note: this are compiled elsewhere because grilo refuses to
|
|
# generate VAPI files unless gobject-introspection exists;
|
|
# OpenWrt does not yet have a gobject-introspection package.
|
|
$(INSTALL_DATA) \
|
|
./files/*.vapi \
|
|
$(STAGING_DIR_HOSTPKG)/share/vala/vapi
|
|
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))
|