sparsehash: fix copy-paste, add TEST().

This commit is contained in:
Kacper Kasper
2017-01-05 23:38:03 +01:00
parent 903a02376c
commit f636f7cf11

View File

@@ -1,10 +1,12 @@
SUMMARY="A YAML parser and emitter in C++"
DESCRIPTION="yaml-cpp is a YAML parser and emitter in C++ matching the YAML \
1.2 spec."
SUMMARY="C++ associative containers"
DESCRIPTION="The Google SparseHash project contains several hash-map \
implementations in use at Google, with different performance characteristics, \
including an implementation that optimizes for space and one that optimizes \
for speed."
HOMEPAGE="https://github.com/sparsehash/sparsehash/"
COPYRIGHT="2008 Jesse Beder"
LICENSE="BSD (2-clause)"
REVISION="1"
COPYRIGHT="2005-2010 Google"
LICENSE="BSD (3-clause)"
REVISION="2"
SOURCE_URI="https://github.com/sparsehash/sparsehash/archive/sparsehash-$portVersion.tar.gz"
CHECKSUM_SHA256="05e986a5c7327796dad742182b2d10805a8d4f511ad090da0490f146c1ff7a8c"
SOURCE_DIR="sparsehash-sparsehash-$portVersion"
@@ -50,3 +52,8 @@ INSTALL()
mv $prefix/share/doc/sparsehash*/* $docDir
rm -rf $prefix/share
}
TEST()
{
make check
}