9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
848 B
Makefile
34 lines
848 B
Makefile
################################################################################
|
|
#
|
|
# tinyalsa
|
|
#
|
|
################################################################################
|
|
|
|
TINYALSA_VERSION = 1.1.0
|
|
TINYALSA_SITE = $(call github,tinyalsa,tinyalsa,$(TINYALSA_VERSION))
|
|
TINYALSA_LICENSE = BSD-3-Clause
|
|
TINYALSA_LICENSE_FILES = NOTICE
|
|
TINYALSA_INSTALL_STAGING = YES
|
|
|
|
define TINYALSA_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CROSS_COMPILE="$(TARGET_CROSS)" -C $(@D)
|
|
endef
|
|
|
|
define TINYALSA_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) \
|
|
-C $(@D) \
|
|
PREFIX="/usr" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
DESTDIR="$(STAGING_DIR)" install
|
|
endef
|
|
|
|
define TINYALSA_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) \
|
|
-C $(@D) \
|
|
PREFIX="/usr" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|