mirror of
https://github.com/kenzok8/small-package
synced 2025-01-09 08:59:26 +08:00
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libcron
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/PerMalmberg/libcron.git
|
|
PKG_SOURCE_DATE:=2023-11-14
|
|
PKG_SOURCE_VERSION:=41f238ceb09d4179e7346d78584a0c978e5d0059
|
|
PKG_MIRROR_HASH:=c7b0651566153b1d641e3b5ece50474c8556d42345779f19a5f22814a8183c38
|
|
|
|
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
|
|
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))
|