mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
c7fb97dcd8
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
702 B
Makefile
25 lines
702 B
Makefile
################################################################################
|
|
#
|
|
# phytool
|
|
#
|
|
################################################################################
|
|
|
|
PHYTOOL_VERSION = 2
|
|
PHYTOOL_SOURCE = phytool-$(PHYTOOL_VERSION).tar.xz
|
|
PHYTOOL_SITE = https://github.com/wkz/phytool/releases/download/v$(PHYTOOL_VERSION)
|
|
PHYTOOL_LICENSE = GPL-2.0+
|
|
PHYTOOL_LICENSE_FILES = LICENSE
|
|
|
|
define PHYTOOL_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
LDLIBS="$(TARGET_LDFLAGS)"
|
|
endef
|
|
|
|
define PHYTOOL_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
DESTDIR="$(TARGET_DIR)" \
|
|
PREFIX="usr" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|