Commit 4f83232e authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

libsha1: new package

parent b6de4b19
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -371,6 +371,7 @@ source "package/gnutls/Config.in"
source "package/libgcrypt/Config.in"
source "package/libgpg-error/Config.in"
source "package/libnss/Config.in"
source "package/libsha1/Config.in"
source "package/nettle/Config.in"
source "package/ocf-linux/Config.in"
source "package/openssl/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBSHA1
	bool "libsha1"
	help
	  libsha1 is a tiny library providing SHA1 implementation,
	  created for facilitating X server compilation on devices
	  when larger libraries containing SHA1 implementations
	  (OpenSSL, Mozilla NSS) are not needed.

	  https://github.com/dottedmag/libsha1
+15 −0
Original line number Diff line number Diff line
#############################################################
#
# libsha1
#
#############################################################

LIBSHA1_VERSION = 0.3
LIBSHA1_SITE = http://github.com/dottedmag/libsha1/tarball/$(LIBSHA1_VERSION)
LIBSHA1_INSTALL_STAGING = YES

# We're getting the source code from Github, so there is no generated
# configure script in the tarball.
LIBSHA1_AUTORECONF = YES

$(eval $(autotools-package))