af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
788 B
Makefile
22 lines
788 B
Makefile
################################################################################
|
|
#
|
|
# libpam-tacplus
|
|
#
|
|
################################################################################
|
|
|
|
LIBPAM_TACPLUS_VERSION = 1.3.9
|
|
LIBPAM_TACPLUS_SITE = $(call github,jeroennijhof,pam_tacplus,$(LIBPAM_TACPLUS_VERSION))
|
|
LIBPAM_TACPLUS_LICENSE = GPL-2.0+
|
|
LIBPAM_TACPLUS_LICENSE_FILES = COPYING
|
|
LIBPAM_TACPLUS_DEPENDENCIES = linux-pam
|
|
# Fetching from github, we need to generate the configure script
|
|
LIBPAM_TACPLUS_AUTORECONF = YES
|
|
LIBPAM_TACPLUS_AUTORECONF_OPTS = -I m4
|
|
LIBPAM_TACPLUS_INSTALL_STAGING = YES
|
|
LIBPAM_TACPLUS_CONF_ENV = \
|
|
ax_cv_check_cflags___fstack_protector_all=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no)
|
|
LIBPAM_TACPLUS_CONF_OPTS = \
|
|
--enable-pamdir=/lib/security
|
|
|
|
$(eval $(autotools-package))
|