blob: e48768c391ccdae51aad4b27a4ed2c04e6d79004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
MAKEDEPS="cmake make "
DEPS="musl"
SOURCE=https://github.com/google/brotli.git
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
}
|