aboutsummaryrefslogtreecommitdiff
path: root/net/boinc-wrapper/Makefile
blob: 8e5dbe24b958a63dd7ff47f48ca07a6738b5ab6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-Identifier-License: GPL-3.0-or-later
#
# Copyright (C) 2023 by Vitalii Koshura <lestat.de.lionkur@gmail.com>
#

include $(TOPDIR)/rules.mk

PKG_NAME:=boinc-wrapper
PKG_VERSION:=26018
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/BOINC/boinc/tar.gz/refs/tags/wrapper/$(PKG_VERSION)?
PKG_HASH:=a93ae0a9e640a893e78f523c6d93f31b1d5812092f85af4e9ce964846373f55d

PKG_MAINTAINER:=Vitalii Koshura <lestat.de.lionkur@gmail.com>
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_CPE_ID:=cpe:/a:boinc-wrapper:boinc-wrapper

PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=0
PKG_FIXUP:=autoreconf

include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/target.mk

define Package/boinc-wrapper
  SECTION:=net
  CATEGORY:=Network
  TITLE:=BOINC wrapper
  DEPENDS:=+libstdcpp
  URL:=https://github.com/BOINC/boinc/
endef

define Package/boinc-wrapper/description
  The Berkeley Open Infrastructure for Network Computing (BOINC) is a
  software platform for distributed computing: several initiatives of
  various scientific disciplines all compete for the idle time of
  desktop computers. The developers' web site at the University of
  Berkeley serves as a common portal to the otherwise independently run
  projects.

  This package provides the BOINC wrapper that runs the Project applications as
  subprocesses, and handles all communication with the BOINC client
  (e.g., to report CPU time and fraction done).
endef

CONFIGURE_ARGS += \
	--disable-server --disable-manager --disable-client --enable-libraries \
	--enable-boinczip \
	--with-boinc-platform=$(REAL_GNU_TARGET_NAME) \
	--with-boinc-alt-platform=$(ARCH)-$(BOARD)-$(DEVICE_TYPE)-openwrt-$(TARGET_SUFFIX)

TARGET_CFLAGS += -Wno-format -Wno-format-security
TARGET_CPPFLAGS += -Wno-format -Wno-format-security

define Build/Compile
	$(call Build/Compile/Default)
	$(MAKE_VARS) $(MAKE) \
		-C $(PKG_BUILD_DIR)/samples/wrapper \
		$(MAKE_FLAGS)
endef

define Package/boinc-wrapper/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/samples/wrapper/wrapper $(1)/usr/bin/boinc-wrapper
endef

$(eval $(call BuildPackage,boinc-wrapper))