mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
32602849a8
https://github.com/ago/pps-tools is redirecting to
https://github.com/redlab-i/pps-tools
e2b25049df
...v1.0.3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
910 B
Makefile
30 lines
910 B
Makefile
################################################################################
|
|
#
|
|
# pps-tools
|
|
#
|
|
################################################################################
|
|
|
|
PPS_TOOLS_VERSION = 1.0.3
|
|
PPS_TOOLS_SITE = $(call github,redlab-i,pps-tools,v$(PPS_TOOLS_VERSION))
|
|
PPS_TOOLS_INSTALL_STAGING = YES
|
|
PPS_TOOLS_LICENSE = GPL-2.0+
|
|
PPS_TOOLS_LICENSE_FILES = COPYING
|
|
|
|
define PPS_TOOLS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
|
|
endef
|
|
|
|
define PPS_TOOLS_INSTALL_STAGING_CMDS
|
|
mkdir -p $(STAGING_DIR)/usr/include/sys $(STAGING_DIR)/usr/bin
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
DESTDIR=$(STAGING_DIR) -C $(@D) install
|
|
endef
|
|
|
|
define PPS_TOOLS_INSTALL_TARGET_CMDS
|
|
mkdir -p $(TARGET_DIR)/usr/include/sys $(TARGET_DIR)/usr/bin
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|