aboutsummaryrefslogtreecommitdiff
path: root/community/girara/build
blob: b54ba0d38c5db7fdefeea70c7851d3fb832bfc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

export DESTDIR=$1

meson build \
    --prefix=/usr \
    --sysconfdir=/etc \
    --buildtype=release \
    -Ddefault_library=static \
    -Djson=enabled \
    -Dnotify=disabled \
    -Ddocs=disabled \
    -Dtests=disabled 

ninja -C build
ninja -C build install