mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
50 lines
1.2 KiB
YAML
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
|