# SPDX-License-Identifier: GPL-3.0-only # # Copyright (C) 2021 ImmortalWrt.org include $(TOPDIR)/rules.mk PKG_NAME:=libcron PKG_VERSION:=1.3.3 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/PerMalmberg/libcron.git PKG_SOURCE_VERSION:=ee34810b11bd23c8be637345532f91059b68b2d7 PKG_MIRROR_HASH:=skip PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Tianling Shen 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 DEPENDS:=+libstdcpp endef define Package/libcron/description Libcron offers an easy to use API to add callbacks with corresponding cron-formatted strings. endef CMAKE_OPTIONS+= -DBUILD_SHARED_LIBS=ON define Package/libcron/install $(INSTALL_DIR) $(1)/usr/lib/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblibcron.so $(1)/usr/lib/ endef $(eval $(call BuildPackage,libcron))