This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
config BR2_PACKAGE_LUKSMETA
bool "luksmeta"
depends on BR2_TOOLCHAIN_HAS_THREADS # cryptsetup -> lvm2
depends on BR2_USE_MMU # cryptsetup -> lvm2
depends on !BR2_STATIC_LIBS # cryptsetup -> lvm2
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # cryptsetup -> json-c
select BR2_PACKAGE_CRYPTSETUP
help
LUKSMeta is a simple library and utility for storing
metadata in the LUKSv1 header.
https://github.com/latchset/luksmeta
comment "luksmeta needs a toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,3 @@
# Locally calculated
sha256 0154af98e7302a172060d83d24b6d87557a822c39ba3e911461bb1a6d3a22d51 luksmeta-8.tar.bz2
sha256 4b72eb6b5a336cd3ec837cc2d6347c23bf7574168db6b4802267700b93021abf COPYING

View File

@@ -0,0 +1,15 @@
################################################################################
#
# luksmeta
#
################################################################################
LUKSMETA_VERSION = 8
LUKSMETA_SOURCE = luksmeta-$(LUKSMETA_VERSION).tar.bz2
LUKSMETA_SITE = https://github.com/latchset/luksmeta/releases/download/v$(LUKSMETA_VERSION)
LUKSMETA_LICENSE = LGPL-2.1+
LUKSMETA_LICENSE_FILES = COPYING
LUKSMETA_DEPENDENCIES = host-pkgconf cryptsetup
LUKSMETA_INSTALL_STAGING = YES
$(eval $(autotools-package))