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>
17 lines
658 B
Makefile
17 lines
658 B
Makefile
################################################################################
|
|
#
|
|
# debianutils
|
|
#
|
|
################################################################################
|
|
|
|
DEBIANUTILS_VERSION = 4.8.1
|
|
DEBIANUTILS_SOURCE = debianutils_$(DEBIANUTILS_VERSION).tar.xz
|
|
DEBIANUTILS_SITE = http://snapshot.debian.org/archive/debian/20161118T033019Z/pool/main/d/debianutils
|
|
DEBIANUTILS_CONF_OPTS = --exec-prefix=/
|
|
# Make sure we override the busybox tools, such as which
|
|
DEBIANUTILS_DEPENDENCIES = $(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
|
DEBIANUTILS_LICENSE = GPL-2.0+, SMAIL (savelog)
|
|
DEBIANUTILS_LICENSE_FILES = debian/copyright
|
|
|
|
$(eval $(autotools-package))
|