summaryrefslogtreecommitdiff
path: root/repo/core/brotli.xibuild
blob: 6d02b18e2ce1cb812fa319004d3f08bb82c9884b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}