This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

27
package/cog/Config.in Normal file
View File

@@ -0,0 +1,27 @@
comment "cog needs wpewebkit and a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_PACKAGE_WPEWEBKIT || !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_COG
bool "cog"
depends on BR2_PACKAGE_WPEWEBKIT
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
depends on BR2_USE_MMU # dbus
select BR2_PACKAGE_DBUS
help
Single "window" launcher for the WebKit WPE port, and
helper library for implementing WPE launcher. It does
not provide any chrome, and is suitable to be used
as a Web application container.
if BR2_PACKAGE_COG
config BR2_PACKAGE_COG_PROGRAMS_HOME_URI
string "home uri"
default "https://wpewebkit.org"
help
Default URI to open when "cog" is launched. If an empty
string is used, there is no default and the URI to open
must be always specified in the command line.
endif

7
package/cog/cog.hash Normal file
View File

@@ -0,0 +1,7 @@
# From https://github.com/Igalia/cog/releases/tag/v0.3.1
md5 65bb078aad576b8402f973234e86cc82 cog-0.3.1.tar.xz
sha1 d73b060618f342accb12db71a7578940c2243d4c cog-0.3.1.tar.xz
sha256 ca7eae333cc02b947ec3d657a2090f01a9b08f9fabb855a585472edafbd9e7eb cog-0.3.1.tar.xz
# Hashes for license files:
sha256 e6c42d93c68b292bcccf6d2ec3e13da85df90b718ba27c2c2a01053a9d009252 COPYING

19
package/cog/cog.mk Normal file
View File

@@ -0,0 +1,19 @@
################################################################################
#
# cog
#
################################################################################
COG_VERSION = 0.3.1
COG_SITE = https://github.com/Igalia/cog/releases/download/v$(COG_VERSION)
COG_SOURCE = cog-$(COG_VERSION).tar.xz
COG_INSTALL_STAGING = YES
COG_DEPENDENCIES = dbus wpewebkit wpebackend-fdo
COG_LICENSE = MIT
COG_LICENSE_FILES = COPYING
COG_CONF_OPTS = \
-DCOG_BUILD_PROGRAMS=ON \
-DCOG_PLATFORM_FDO=ON \
-DCOG_HOME_URI='$(call qstrip,$(BR2_PACKAGE_COG_PROGRAMS_HOME_URI))'
$(eval $(cmake-package))