Commit 164b9064 authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/snappy: new package



[Peter: needs C++ support]
Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent d39f6da0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -386,6 +386,7 @@ endmenu
menu "Compression and decompression"
source "package/libarchive/Config.in"
source "package/lzo/Config.in"
source "package/snappy/Config.in"
source "package/zlib/Config.in"
endmenu

+13 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_SNAPPY
	bool "snappy"
	depends on BR2_INSTALL_LIBSTDCPP
	help
	  Snappy is a compression/decompression library. It does not aim for
	  maximum compression, or compatibility with any other compression
	  library; instead, it aims for very high speeds and reasonable
	  compression.

	  http://code.google.com/p/snappy/

comment "snappy requires a toolchain with C++ support"
	depends on !BR2_INSTALL_LIBSTDCPP
+13 −0
Original line number Diff line number Diff line
#############################################################
#
# snappy
#
#############################################################

SNAPPY_VERSION		= 1.1.0
SNAPPY_SITE		= http://snappy.googlecode.com/files/
SNAPPY_LICENSE		= BSD-3c
SNAPPY_LICENSE_FILES	= COPYING
SNAPPY_INSTALL_STAGING	= YES

$(eval $(autotools-package))