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>
28 lines
946 B
Makefile
28 lines
946 B
Makefile
################################################################################
|
|
#
|
|
# setserial
|
|
#
|
|
################################################################################
|
|
|
|
SETSERIAL_VERSION = 2.17
|
|
SETSERIAL_PATCH = setserial_2.17-45.3.diff.gz
|
|
SETSERIAL_SOURCE = setserial_$(SETSERIAL_VERSION).orig.tar.gz
|
|
SETSERIAL_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/s/setserial
|
|
SETSERIAL_LICENSE = GPL-2.0
|
|
SETSERIAL_LICENSE_FILES = debian/copyright
|
|
# make all also builds setserial.cat which needs nroff
|
|
SETSERIAL_MAKE_OPTS = setserial
|
|
|
|
define SETSERIAL_APPLY_DEBIAN_PATCHES
|
|
# Touching gorhack.h is needed for the Debian patch 18 to work
|
|
if [ -d $(@D)/debian/patches ]; then \
|
|
touch $(@D)/gorhack.h; \
|
|
rm $(@D)/debian/patches/01_makefile.dpatch; \
|
|
$(APPLY_PATCHES) $(@D) $(@D)/debian/patches *.dpatch; \
|
|
fi
|
|
endef
|
|
|
|
SETSERIAL_POST_PATCH_HOOKS += SETSERIAL_APPLY_DEBIAN_PATCHES
|
|
|
|
$(eval $(autotools-package))
|