From 739c65c54cb0e957df5e9b76f93fb02554e5cac3 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 4 May 2022 23:52:30 +0100 Subject: moved everything to new file formatting --- repo/system/brotli/brotli.xibuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 repo/system/brotli/brotli.xibuild (limited to 'repo/system/brotli/brotli.xibuild') 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/ +} -- cgit v1.2.1