blob: a153361dfc720dc86c4ae496373af31598ba7c25 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | #!/bin/sh
NAME="mpdscribble"
DESC="MPD client which submits information about tracks being played to a scrobbler"
MAKEDEPS="meson ninja "
DEPS="libmpdclient curl libgcrypt "
PKG_VER=0.24
SOURCE="https://github.com/MusicPlayerDaemon/mpdscribble/archive/refs/tags/v$PKG_VER.tar.gz"
build () {
    mkdir build &&
    cd build    &&
    meson --prefix=/usr \
            .. &&
    ninja
}
package () {
    DESTDIR=$PKG_DEST ninja install
}
 |