diff options
Diffstat (limited to 'repo/coeurl')
-rw-r--r-- | repo/coeurl/coeurl.xibuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/coeurl/coeurl.xibuild b/repo/coeurl/coeurl.xibuild new file mode 100644 index 0000000..44bf01c --- /dev/null +++ b/repo/coeurl/coeurl.xibuild @@ -0,0 +1,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 +} + |