2016-08-05 15:26:25 +00:00
|
|
|
#
|
|
|
|
# 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
|
2022-01-29 12:54:35 +00:00
|
|
|
PKG_VERSION:=4.0.0
|
2019-06-06 01:21:38 +00:00
|
|
|
|
2018-03-27 01:21:33 +00:00
|
|
|
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
|
2019-06-06 01:21:38 +00:00
|
|
|
PKG_LICENSE:=GPL-3.0-only
|
|
|
|
PKG_LICENSE_FILES:=LICENSE.md
|
2018-03-27 01:21:33 +00:00
|
|
|
|
2016-08-05 15:26:25 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/acme
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2022-01-29 12:54:35 +00:00
|
|
|
DEPENDS:=+acme-acmesh
|
|
|
|
TITLE:=Shorthand package for acme-acmesh
|
2019-06-06 01:21:38 +00:00
|
|
|
PKGARCH:=all
|
2016-08-05 15:26:25 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/acme/description
|
2022-01-29 12:54:35 +00:00
|
|
|
Shorthand package for acme-acmesh.
|
2016-08-05 15:26:25 +00:00
|
|
|
endef
|
|
|
|
|
2022-01-29 12:54:35 +00:00
|
|
|
define Package/acme/install
|
|
|
|
:
|
2016-08-05 15:26:25 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,acme))
|