mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
22 lines
577 B
Makefile
22 lines
577 B
Makefile
################################################################################
|
|
#
|
|
# umtprd
|
|
#
|
|
################################################################################
|
|
|
|
UMTPRD_VERSION = 7d7d099df0dd929f95de0f45a2b6b006545207c6
|
|
UMTPRD_SITE_METHOD = git
|
|
UMTPRD_SITE = https://github.com/viveris/uMTP-Responder.git
|
|
UMTPRD_LICENSE = GPL-3.0+
|
|
UMTPRD_LICENSE_FILES = LICENSE
|
|
|
|
define UMTPRD_BUILD_CMDS
|
|
CC=$(TARGET_CC) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define UMTPRD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/umtprd $(TARGET_DIR)/usr/sbin/umtprd
|
|
endef
|
|
|
|
$(eval $(generic-package))
|