[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

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))