luksmeta: new package

[Peter: add DEVELOPERS entry]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2017-10-12 21:34:29 +02:00
parent 0584635a4e
commit 9f3bcb4f5a
5 changed files with 37 additions and 0 deletions

View file

@ -1344,6 +1344,7 @@ F: package/fscryptctl/
F: package/jo/
F: package/jose/
F: package/libfastjson/
F: package/luksmeta/
F: package/lzop/
F: package/memtool/
F: package/mosquitto/

View file

@ -442,6 +442,7 @@ endmenu
source "package/lshw/Config.in"
source "package/lsscsi/Config.in"
source "package/lsuio/Config.in"
source "package/luksmeta/Config.in"
source "package/lvm2/Config.in"
source "package/mali-t76x/Config.in"
source "package/mdadm/Config.in"

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_USES_MUSL # cryptsetup -> lvm2
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 glibc or uClibc toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS \
|| BR2_TOOLCHAIN_USES_MUSL

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))