mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
28 lines
812 B
Makefile
28 lines
812 B
Makefile
################################################################################
|
|
#
|
|
# nilfs-utils
|
|
#
|
|
################################################################################
|
|
|
|
NILFS_UTILS_VERSION = 2.2.11
|
|
NILFS_UTILS_SOURCE = nilfs-utils-$(NILFS_UTILS_VERSION).tar.bz2
|
|
NILFS_UTILS_SITE = https://nilfs.sourceforge.io/download
|
|
NILFS_UTILS_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (libraries)
|
|
NILFS_UTILS_LICENSE_FILES = COPYING
|
|
NILFS_UTILS_INSTALL_STAGING = YES
|
|
|
|
# need libuuid, libblkid, libmount
|
|
NILFS_UTILS_DEPENDENCIES = util-linux
|
|
|
|
# We're patching sbin/cleanerd/Makefile.am
|
|
NILFS_UTILS_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
NILFS_UTILS_CONF_OPTS += --with-selinux
|
|
NILFS_UTILS_DEPENDENCIES += libselinux
|
|
else
|
|
NILFS_UTILS_CONF_OPTS += --without-selinux
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|