diff options
Diffstat (limited to 'repo')
-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 +} |