mirror of
https://github.com/openwrt/packages.git
synced 2025-09-30 07:53:02 +00:00
https://github.com/gokcehan/lf/releases/tag/r38 Signed-off-by: Nate Robinson <nrobinson2000@me.com>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (C) 2025 Nate Robinson
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=lf
|
|
PKG_VERSION:=38
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/gokcehan/lf.git
|
|
PKG_SOURCE_VERSION:=r$(PKG_VERSION)
|
|
PKG_MIRROR_HASH:=ff99f81df2b30e37f6e34952ba1b004e3f8b641954e35bf87a359a88a6926faf
|
|
|
|
PKG_MAINTAINER:=Nate Robinson <nrobinson2000@me.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=github.com/gokcehan/lf
|
|
GO_PKG_LDFLAGS_X:=main.gVersion=$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/lf
|
|
SUBMENU:=Filesystem
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Terminal file manager
|
|
URL:=https://github.com/gokcehan/lf
|
|
DEPENDS:=$(GO_ARCH_DEPENDS)
|
|
endef
|
|
|
|
define Package/lf/description
|
|
lf (as in "list files") is a terminal file manager written in Go
|
|
with a heavy inspiration from the ranger file manager.
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,lf))
|
|
$(eval $(call BuildPackage,lf))
|