blob: 540cb12dcaa590e04fa3d377d9c643ca97742a59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
NAME="mpdscribble"
DESC="MPD client which submits information about tracks being played to a scrobbler"
MAKEDEPS="meson ninja 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
}
|