kumquat-buildroot/package/ptpd/ptpd.mk
Gustavo Zacarias 7d6449bb16 ptpd: new package
Add the new ptpd package, loosely based on the one from bug #2305.
This one handles the IEEE 1588-2002 spec.

[Peter: mark init script as executable]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-05-11 22:23:58 +02:00

26 lines
612 B
Makefile

#############################################################
#
# ptpd
#
#############################################################
PTPD_VERSION = 1.1.0
PTPD_SITE = http://downloads.sourceforge.net/project/ptpd/ptpd/$(PTPD_VERSION)
PTPD_LICENSE = BSD
PTPD_LICENSE_FILES = COPYRIGHT
define PTPD_BUILD_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/src
endef
define PTPD_INSTALL_TARGET_CMDS
$(INSTALL) -m 755 -D $(@D)/src/ptpd $(TARGET_DIR)/usr/sbin/ptpd
endef
define PTPD_INSTALL_INIT_SYSV
$(INSTALL) -m 755 -D package/ptpd/S65ptpd \
$(TARGET_DIR)/etc/init.d/S65ptpd
endef
$(eval $(generic-package))