1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-25 12:48:03 +00:00
Files
operating-system/buildroot/package/libscrypt/libscrypt.mk
2018-03-17 23:47:00 +00:00

28 lines
757 B
Makefile

################################################################################
#
# libscrypt
#
################################################################################
LIBSCRYPT_VERSION = v1.21
LIBSCRYPT_SITE = $(call github,technion,libscrypt,$(LIBSCRYPT_VERSION))
LIBSCRYPT_LICENSE = BSD-2-Clause
LIBSCRYPT_LICENSE_FILES = LICENSE
LIBSCRYPT_INSTALL_STAGING = YES
define LIBSCRYPT_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
endef
define LIBSCRYPT_INSTALL_STAGING_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr \
DESTDIR=$(STAGING_DIR) install
endef
define LIBSCRYPT_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr \
DESTDIR=$(TARGET_DIR) install
endef
$(eval $(generic-package))