0
0
mirror of https://github.com/openwrt/packages.git synced 2025-08-28 23:53:05 +00:00
Files
packages/utils/aliyun-cli/Makefile
2025-08-19 19:26:36 +03:00

51 lines
1.3 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-only
include $(TOPDIR)/rules.mk
PKG_NAME:=aliyun-cli
PKG_VERSION:=3.0.296
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/aliyun/aliyun-cli.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_MIRROR_HASH:=46eb23897d9e828f3bfd92eee1d3c485724ad05087ea69779e7654b3766582b7
PKG_LICENSE=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Bruce Chen <a805899926@gmail.com>
PKG_BUILD_DEPENDS:=golang/host
PKG_BUILD_PARALLEL:=1
PKG_BUILD_FLAGS:=no-mips16
GO_PKG:=github.com/aliyun/aliyun-cli/v3
GO_PKG_LDFLAGS_X:=$(GO_PKG)/cli.Version=$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
include ../../lang/golang/golang-package.mk
define Package/aliyun-cli
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Alibaba Cloud OpenAPI
URL:=https://github.com/aliyun/aliyun-cli
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle
endef
define Package/aliyun-cli/conffiles
/root/.aliyun/config.json
endef
define Package/aliyun-cli/description
The Alibaba Cloud CLI is a tool to manage and use Alibaba Cloud resources through a command line interface.
endef
define Package/aliyun-cli/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(GO_PKG_BUILD_BIN_DIR)/main $(1)/usr/bin/aliyun
endef
$(eval $(call GoBinPackage,aliyun-cli))
$(eval $(call BuildPackage,aliyun-cli))