[PACKAGE/BOARD] add COMMANDER package & update appLink (#57)

* [PACKAGE] add COMMANDER file manager
* [BOARD] rm precompiled commander & upd appLink
This commit is contained in:
Apaczer
2023-11-24 21:15:29 +01:00
committed by GitHub
parent 02627752b2
commit 790b198b88
20 changed files with 27 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,3 +0,0 @@
These icons are from the "Humanity" Gnome theme.
License: GPL

Binary file not shown.

Before

Width:  |  Height:  |  Size: 520 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 966 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 816 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 864 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -1,4 +1,3 @@
title=Commander
description=file utility
exec=/mnt/apps/commander/commander
selectorbrowser=true
description=File manager utility
exec=/usr/bin/commander

View File

@@ -222,6 +222,7 @@ BR2_PACKAGE_MIYOO_LOGO=y
BR2_PACKAGE_MIYOO_CTL=y
BR2_PACKAGE_FBCAT=y
BR2_PACKAGE_ST_SDL=y
BR2_PACKAGE_COMMANDER=y
BR2_PACKAGE_OPKG=y
BR2_PACKAGE_OPKG_UTILS=y
BR2_PACKAGE_DIALOG=y

View File

@@ -199,6 +199,7 @@ BR2_PACKAGE_MIYOO_LOGO=y
BR2_PACKAGE_MIYOO_CTL=y
BR2_PACKAGE_FBCAT=y
BR2_PACKAGE_ST_SDL=y
BR2_PACKAGE_COMMANDER=y
BR2_PACKAGE_OPKG=y
BR2_PACKAGE_OPKG_UTILS=y
BR2_PACKAGE_DIALOG=y

View File

@@ -2213,6 +2213,7 @@ menu "Miscellaneous"
source "package/miyoo-ctl/Config.in"
source "package/fbcat/Config.in"
source "package/st-sdl/Config.in"
source "package/commander/Config.in"
endmenu

View File

@@ -0,0 +1,4 @@
config BR2_PACKAGE_COMMANDER
bool "commander"
help
Dual pane file manager

View File

@@ -0,0 +1,17 @@
COMMANDER_VERSION = 52f9a6a1e06d48471c3f116f37ffad26f7c33262
COMMANDER_SITE_METHOD = git
COMMANDER_SITE = https://github.com/Apaczer/commander
COMMANDER_DEPENDENCIES = sdl sdl_image sdl_ttf sdl_gfx
RESDIR = /usr/share/commander
define COMMANDER_BUILD_CMDS
$(MAKE) CXX="$(TARGET_CXX)" RESDIR="$(RESDIR)" -C $(@D) -f Makefile.miyoo
endef
define COMMANDER_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/output/commander $(TARGET_DIR)/usr/bin
cp -R $(@D)/res $(TARGET_DIR)/usr/share/commander
endef
$(eval $(generic-package))