41 lines
980 B
Makefile
41 lines
980 B
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libcron
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/PerMalmberg/libcron.git
|
|
PKG_SOURCE_DATE:=2021-11-22
|
|
PKG_SOURCE_VERSION:=d4679b7c3cd7b03bf3865dc1709f1d1133fb7ee1
|
|
PKG_MIRROR_HASH:=skip
|
|
PKG_VERSION:=1.3.0-$(call version_abbrev,$(PKG_SOURCE_VERSION))
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
CMAKE_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libcron
|
|
SECTION:=lib
|
|
CATEGORY:=Libraries
|
|
URL:=https://github.com/PerMalmberg/libcron
|
|
TITLE:=A C++ scheduling library using cron formatting
|
|
BUILDONLY:=1
|
|
endef
|
|
|
|
define Package/libcron/description
|
|
Libcron offers an easy to use API to add callbacks with corresponding
|
|
cron-formatted strings.
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libcron))
|