mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
changelog: https://git.lttng.org/?p=userspace-rcu.git;a=blob;f=ChangeLog;h=44d0d303b649682d05b3be85fa702eb919343807;hb=d8bd37fb288a2da7238103f9b24bf25e190902be Signed-off-by: Jan Hák <jan.hak@nic.cz>
63 lines
2.0 KiB
Makefile
63 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
# Copyright (C) 2014-2018 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=liburcu
|
|
PKG_VERSION:=0.15.6
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=Daniel Salzman <daniel.salzman@nic.cz>
|
|
PKG_LICENSE:=LGPL-2.1-only LGPL-2.1-or-later GPL-2.0-or-later-with-Autoconf-exception-2.0 \
|
|
GPL-2.0-or-later-with-LicenseRef-Autoconf-exception-macro MIT FSFAP LicenseRef-Boehm-GC
|
|
PKG_LICENSE_FILES:=LICENSES/LGPL-2.1-only.txt LICENSES/LGPL-2.1-or-later.txt LICENSES/GPL-2.0-or-later.txt \
|
|
LICENSES/Autoconf-exception-2.0.txt LICENSES/LicenseRef-Autoconf-exception-macro.txt \
|
|
LICENSES/MIT.txt LICENSES/FSFAP.txt LICENSES/LicenseRef-Boehm-GC.txt lgpl-relicensing.md LICENSE.md
|
|
|
|
PKG_SOURCE:=userspace-rcu-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://lttng.org/files/urcu/
|
|
PKG_HASH:=850b192096eb11ebf2c70e8f97bc7da7479ee41da1bebeb44e3986908bac414f
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/userspace-rcu-$(PKG_VERSION)
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/liburcu
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=User-space Read-Copy-Update library
|
|
URL:=https://lttng.org/
|
|
DEPENDS:=+libpthread @!arc
|
|
endef
|
|
|
|
define Package/liburcu/description
|
|
Userspace Read-Copy-Update library.
|
|
endef
|
|
|
|
ifeq ($(CONFIG_arc),)
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/urcu* $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liburcu*.{a,so*} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
endif
|
|
|
|
define Package/liburcu/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liburcu*.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,liburcu))
|