add libsixel test

This commit is contained in:
Ing 2023-08-06 21:12:12 +08:00
parent 74507779aa
commit ec34015e54
5 changed files with 28 additions and 0 deletions

1
external/Config.in vendored
View File

@ -1,2 +1,3 @@
source "$BR2_EXTERNAL_ARPL_PATH/libsixel/Config.in"
source "$BR2_EXTERNAL_ARPL_PATH/r8125/Config.in" source "$BR2_EXTERNAL_ARPL_PATH/r8125/Config.in"
source "$BR2_EXTERNAL_ARPL_PATH/r8169/Config.in" source "$BR2_EXTERNAL_ARPL_PATH/r8169/Config.in"

8
external/libsixel/Config.in vendored Normal file
View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_LIBSIXEL
bool "libsixel"
depends on BR2_USE_MMU
help
This package provides encoder/decoder implementation for
DEC SIXEL graphics, and some converter programs.
https://github.com/saitoha/libsixel

1
external/libsixel/libsixel.hash vendored Normal file
View File

@ -0,0 +1 @@
sha256 f555dd6fbc4b6a79b29670472a8d0455699901342ef6eda9e178e067fc6e0b60 libsixel-6a5be8b72d84037b83a5ea838e17bcf372ab1d5f.tar.gz

17
external/libsixel/libsixel.mk vendored Normal file
View File

@ -0,0 +1,17 @@
################################################################################
#
# libsixel
#
################################################################################
# 6a5be8b72d84037b83a5ea838e17bcf372ab1d5f is v1.8.6 commit ID
LIBSIXEL_VERSION = 6a5be8b72d84037b83a5ea838e17bcf372ab1d5f
LIBSIXEL_SITE = $(call github,saitoha,libsixel,$(LIBSIXEL_VERSION))
LIBSIXEL_LICENSE = MIT
LIBSIXEL_LICENSE_FILES = LICENSE
LIBSIXEL_CPE_ID_VENDOR = libsixel_project
LIBSIXEL_INSTALL_STAGING = YES
LIBSIXEL_AUTORECONF = YES
$(eval $(autotools-package))
$(eval $(host-autotools-package))

View File

@ -120,5 +120,6 @@ BR2_PACKAGE_HOST_DOSFSTOOLS=y
BR2_PACKAGE_HOST_E2FSPROGS=y BR2_PACKAGE_HOST_E2FSPROGS=y
# ARPL external packages (in /root/arpl-i18n/external) # ARPL external packages (in /root/arpl-i18n/external)
# #
BR2_PACKAGE_LIBSIXEL=y
BR2_PACKAGE_R8125=y BR2_PACKAGE_R8125=y
BR2_PACKAGE_R8169=y BR2_PACKAGE_R8169=y