[PACKAGE] add fbcat (#40)

This commit is contained in:
Apaczer
2023-07-17 22:27:10 +02:00
committed by GitHub
parent 3bbf058d81
commit cd078d2b55
7 changed files with 27 additions and 51 deletions

View File

@@ -1,51 +0,0 @@
#
# Automatically generated make config: don't edit
# Mon Feb 18 09:11:56 2008
#
BR2_HAVE_DOT_CONFIG=y
# BR2_alpha is not set
# BR2_arm is not set
# BR2_armeb is not set
# BR2_cris is not set
# BR2_ia64 is not set
BR2_i386=y
# BR2_m68k is not set
# BR2_mips is not set
# BR2_mipsel is not set
# BR2_nios2 is not set
# BR2_powerpc is not set
# BR2_sh is not set
# BR2_sparc is not set
# BR2_sparc64 is not set
# BR2_x86_64 is not set
# BR2_x86_i486 is not set
# BR2_x86_i586 is not set
BR2_x86_i686=y
# BR2_x86_pentiumpro is not set
# BR2_x86_pentium_mmx is not set
# BR2_x86_pentium_m is not set
# BR2_x86_pentium2 is not set
# BR2_x86_pentium3 is not set
# BR2_x86_pentium4 is not set
# BR2_x86_prescott is not set
# BR2_x86_nocona is not set
# BR2_x86_core2 is not set
# BR2_x86_k6 is not set
# BR2_x86_k6_2 is not set
# BR2_x86_athlon is not set
# BR2_x86_athlon_4 is not set
# BR2_x86_opteron is not set
# BR2_x86_opteron_sse3 is not set
# BR2_x86_barcelona is not set
# BR2_x86_geode is not set
# BR2_x86_c3 is not set
# BR2_x86_winchip_c6 is not set
# BR2_x86_winchip2 is not set
BR2_ARCH="i686"
BR2_ENDIAN="LITTLE"
BR2_GCC_TARGET_TUNE="i686"
BR2_GCC_TARGET_ARCH="i686"
#
# Target options
#

View File

@@ -139,6 +139,7 @@ BR2_PACKAGE_GMENU2X=y
BR2_PACKAGE_MIYOO_DAEMON=y BR2_PACKAGE_MIYOO_DAEMON=y
BR2_PACKAGE_MIYOO_LOGO=y BR2_PACKAGE_MIYOO_LOGO=y
BR2_PACKAGE_MIYOO_CTL=y BR2_PACKAGE_MIYOO_CTL=y
BR2_PACKAGE_FBCAT=y
BR2_PACKAGE_DIALOG=y BR2_PACKAGE_DIALOG=y
BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y
BR2_PACKAGE_NANO=y BR2_PACKAGE_NANO=y

View File

@@ -116,6 +116,7 @@ BR2_PACKAGE_GMENU2X=y
BR2_PACKAGE_MIYOO_DAEMON=y BR2_PACKAGE_MIYOO_DAEMON=y
BR2_PACKAGE_MIYOO_LOGO=y BR2_PACKAGE_MIYOO_LOGO=y
BR2_PACKAGE_MIYOO_CTL=y BR2_PACKAGE_MIYOO_CTL=y
BR2_PACKAGE_FBCAT=y
BR2_PACKAGE_DIALOG=y BR2_PACKAGE_DIALOG=y
BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y
BR2_PACKAGE_NANO=y BR2_PACKAGE_NANO=y

View File

@@ -2135,6 +2135,7 @@ menu "Miscellaneous"
source "package/miyoo-daemon/Config.in" source "package/miyoo-daemon/Config.in"
source "package/miyoo-logo/Config.in" source "package/miyoo-logo/Config.in"
source "package/miyoo-ctl/Config.in" source "package/miyoo-ctl/Config.in"
source "package/fbcat/Config.in"
endmenu endmenu

4
package/fbcat/Config.in Normal file
View File

@@ -0,0 +1,4 @@
config BR2_PACKAGE_FBCAT
bool "fbcat"
help
fbcat

2
package/fbcat/fbcat.hash Normal file
View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 2c3f13981fa52aae462688fd6eb557773e960603d7ded5b0ba524f838f63606c fbcat-0.5.2.tar.gz

18
package/fbcat/fbcat.mk Normal file
View File

@@ -0,0 +1,18 @@
################################################################################
#
# fbcat
#
################################################################################
FBCAT_VERSION = 0.5.2
FBCAT_SITE = $(call github,jwilk,fbcat,$(FBCAT_VERSION))
define FBCAT_BUILD_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) fbcat
endef
define FBCAT_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/fbcat $(TARGET_DIR)/usr/bin/fbcat
endef
$(eval $(generic-package))