diff options
Diffstat (limited to 'repo/system/brotli/brotli.xibuild')
-rw-r--r-- | repo/system/brotli/brotli.xibuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/system/brotli/brotli.xibuild b/repo/system/brotli/brotli.xibuild new file mode 100644 index 0000000..dbdd973 --- /dev/null +++ b/repo/system/brotli/brotli.xibuild @@ -0,0 +1,21 @@ +#!/bin/sh + +MAKEDEPS="cmake make " +DEPS="musl" + +SOURCE=https://github.com/google/brotli +DESC="A generic-purpose lossless compression algorithm" + +build () { + mkdir out && cd out + ../configure-cmake + make +} +check () { + make test +} + +package () { + make DESTDIR=$PKG_DEST install + mv $PKG_DEST/usr/local/* $PKG_DEST/usr/ +} |