From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/brotli/brotli.xibuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 repo/brotli/brotli.xibuild (limited to 'repo/brotli') diff --git a/repo/brotli/brotli.xibuild b/repo/brotli/brotli.xibuild new file mode 100644 index 0000000..d45bb4b --- /dev/null +++ b/repo/brotli/brotli.xibuild @@ -0,0 +1,26 @@ +#!/bin/sh + +MAKEDEPS="cmake make " +DEPS="musl" + +SOURCE=https://github.com/google/brotli +DESC="A generic-purpose lossless compression algorithm" + +prepare () { + sed -i 's,/usr/bin/env bash,/bin/sh,' tests/*.sh + sh ./bootstrap +} + +build () { + ./configure \ + --prefix=/usr \ + --disable-static + make +} +check () { + make check +} + +package () { + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1