mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
This is the Not Quite PTP timing library necessary for AirPlay2 support with shairport-sync. Signed-off-by: Trammell Hudson <hudson@trmm.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
660 B
Makefile
25 lines
660 B
Makefile
################################################################################
|
|
#
|
|
# nqptp
|
|
#
|
|
################################################################################
|
|
|
|
NQPTP_VERSION = 1.2.4
|
|
NQPTP_SITE = $(call github,mikebrady,nqptp,$(NQPTP_VERSION))
|
|
NQPTP_LICENSE = GPL-2.0
|
|
NQPTP_LICENSE_FILES = LICENSE
|
|
NQPTP_DEPENDENCIES = libconfig host-pkgconf
|
|
# git clone, no configure
|
|
NQPTP_AUTORECONF = YES
|
|
|
|
define NQPTP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/nqptp $(TARGET_DIR)/usr/bin/nqptp
|
|
endef
|
|
|
|
define NQPTP_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/nqptp/S90nqptp \
|
|
$(TARGET_DIR)/etc/init.d/S90nqptp
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|