Files
packages/net/acme/Makefile
Seo Suchan fe3d05090b acme: make virtual package satisfiable by uacme
currently acme metapackage only able to satisfied with acme-acmesh,
but make is satisfieable by uacme if it's already installed.
still defaults to acme.sh

Signed-off-by: Seo Suchan <tjtncks@gmail.com>
2026-04-14 10:38:06 +03:00

42 lines
785 B
Makefile

#
# Copyright (C) 2016 Toke Høiland-Jørgensen
#
# This is free software, licensed under the GNU General Public License v3 or
# later.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=acme
PKG_VERSION:=4.0.1
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
PKG_LICENSE:=GPL-3.0-only
PKG_LICENSE_FILES:=LICENSE.md
include $(INCLUDE_DIR)/package.mk
define Package/acme
SECTION:=net
CATEGORY:=Network
DEPENDS:=+!PACKAGE_uacme:acme-acmesh
TITLE:=Virtual package for any acme clients, default to acme-acmesh
PKGARCH:=all
endef
define Package/acme/description
Shorthand package for proper acme backend, default to acme.sh and support uacme
endef
define Package/acme/install
:
endef
define Build/Configure
endef
define Build/Compile
endef
$(eval $(call BuildPackage,acme))