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>
29 lines
696 B
Makefile
29 lines
696 B
Makefile
################################################################################
|
|
#
|
|
# firejail
|
|
#
|
|
################################################################################
|
|
|
|
FIREJAIL_VERSION = 0.9.44.8
|
|
FIREJAIL_SITE = http://download.sourceforge.net/firejail
|
|
FIREJAIL_SOURCE = firejail-$(FIREJAIL_VERSION).tar.xz
|
|
FIREJAIL_LICENSE = GPL-2.0+
|
|
FIREJAIL_LICENSE_FILES = COPYING
|
|
|
|
FIREJAIL_CONF_OPTS = \
|
|
--enable-bind \
|
|
--enable-file-transfer \
|
|
--enable-network \
|
|
--enable-seccomp \
|
|
--enable-userns
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
FIREJAIL_CONF_OPTS += --enable-busybox-workaround
|
|
endif
|
|
|
|
define FIREJAIL_PERMISSIONS
|
|
/usr/bin/firejail f 4755 0 0 - - - - -
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|