diff options
author | davidovski <david@davidovski.xyz> | 2022-01-03 00:47:08 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-03 00:47:08 +0000 |
commit | b63a9160f8a0cd3e0ad228e3d27ded8cc0e379c9 (patch) | |
tree | d7978f5731fd1d740a0a74be7e899eef2ce910d9 /repo/core/brotli.xibuild | |
parent | 83ed25b746bbbfd5c01d6cf3281d11239ffe061a (diff) |
added brotli
Diffstat (limited to 'repo/core/brotli.xibuild')
-rw-r--r-- | repo/core/brotli.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/core/brotli.xibuild b/repo/core/brotli.xibuild new file mode 100644 index 0000000..6d02b18 --- /dev/null +++ b/repo/core/brotli.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://github.com/google/brotli +DESC="A generic-purpose lossless compression algorithm" + +build () { + mkdir out && cd out + ../configure-cmake + make + make test + make DESTDIR=$PKG_DEST install +} |