blob: e3de85d2c4ff5747e4eea95b3be761ce86ed2eb9 (
plain)
1 # Description: Command line client for MPD
2 # URL: https://github.com/MusicPlayerDaemon/mpc
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: mpd
5
6 name=mpc
7 version=0.35
8 release=1
9 source=(https://github.com/MusicPlayerDaemon/mpc/archive/refs/tags/v${version}.tar.gz)
10
11 build () {
12 cd ${name}-${version}
13 meson build --prefix=/usr
14 ninja -C build
15 DESTDIR="${PKG}" ninja -C build install
16 install -D -m 755 \
17 contrib/mpc-completion.bash \
18 "${PKG}/usr/share/bash-completion/completions/mpc-completion.bash"
19
20 rm -r "${PKG}/usr/share/doc"
21 }
|