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

13
package/snappy/Config.in Normal file
View File

@@ -0,0 +1,13 @@
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://google.github.io/snappy/
comment "snappy needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -0,0 +1,3 @@
# Locally calculated
sha256 3dfa02e873ff51a11ee02b9ca391807f0c8ea0529a4924afa645fbf97163f9d4 snappy-1.1.7.tar.gz
sha256 55172044f7e241207117448a4d9d6ba1d0925c8ad66b5d4c08c70adfa9cc3de6 COPYING

14
package/snappy/snappy.mk Normal file
View File

@@ -0,0 +1,14 @@
################################################################################
#
# snappy
#
################################################################################
SNAPPY_VERSION = 1.1.7
SNAPPY_SITE = $(call github,google,snappy,$(SNAPPY_VERSION))
SNAPPY_LICENSE = BSD-3-Clause
SNAPPY_LICENSE_FILES = COPYING
SNAPPY_INSTALL_STAGING = YES
SNAPPY_CONF_OPTS = -DSNAPPY_BUILD_TESTS=OFF
$(eval $(cmake-package))