pantry/projects/google.github.io/snappy/package.yml
Marc Seitz 312954076e
add snappy (#460)
Co-authored-by: Jacob Heider <jacob@tea.xyz>
Co-authored-by: Max Howell <mxcl@me.com>
2023-03-16 15:25:30 -04:00

50 lines
1.2 KiB
YAML

distributable:
url: https://github.com/google/snappy/archive/refs/tags/{{version}}.tar.gz
strip-components: 1
versions:
github: google/snappy/tags
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
freedesktop.org/pkg-config: '*'
cmake.org: '*'
gnu.org/patch: '*'
script: |
# disable -Werror (because there are warnings lol)
patch -p1 <props/CMakeLists.txt.patch
cmake . $ARGS
make
make install
env:
ARGS:
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DCMAKE_BUILD_TYPE=Release
- -DSNAPPY_BUILD_TESTS=OFF
- -DSNAPPY_BUILD_BENCHMARKS=OFF
- -DBUILD_SHARED_LIBS=ON
test:
dependencies:
tea.xyz/gx/cc: c99
fixture: |
#include <assert.h>
#include <snappy.h>
#include <string>
using namespace std;
using namespace snappy;
int main() {
string source = "Hello World!";
string compressed, decompressed;
Compress(source.data(), source.size(), &compressed);
Uncompress(compressed.data(), compressed.size(), &decompressed);
assert(source == decompressed);
return 0;
}
script: |
mv $FIXTURE fixture.cpp
c++ fixture.cpp -lsnappy -std=c++11
./a.out