mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
[Thomas: updated to 2.0.8, restricted to supported architectures, added licensing informations, updated to latest Buildroot package infrastructure] [Peter: Fix LICENSE_FILES typo, needs largefile support in toolchain] Signed-off-by: Will Newton <will.newton@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
582 B
Makefile
22 lines
582 B
Makefile
#############################################################
|
|
#
|
|
# numactl
|
|
#
|
|
#############################################################
|
|
|
|
NUMACTL_VERSION = 2.0.8
|
|
NUMACTL_SOURCE = numactl-$(NUMACTL_VERSION).tar.gz
|
|
NUMACTL_SITE = ftp://oss.sgi.com/www/projects/libnuma/download/
|
|
NUMACTL_LICENSE = LGPLv2.1 (libnuma), GPLv2 (programs)
|
|
NUMACTL_LICENSE_FILES = README
|
|
|
|
define NUMACTL_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define NUMACTL_INSTALL_TARGET_CMDS
|
|
$(MAKE) prefix=$(TARGET_DIR) libdir=$(TARGET_DIR)/lib -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|