blob: 44bf01ca964b19dafac7625315f7448d146ed43b (
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
|
#!/bin/sh
NAME="coeurl"
DESC="Asynchronous wrapper around libcurl"
MAKEDEPS=" cmake curl libevent meson spdlog"
PKG_VER=0.2.0
SOURCE="https://nheko.im/nheko-reborn/coeurl/-/archive/v$PKG_VER/coeurl-v$PKG_VER.tar.bz2"
build() {
meson --prefix=/usr \
. output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
meson test --no-rebuild -v -C output
}
package() {
DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
}
|