diff options
-rw-r--r-- | mpc/.footprint | 7 | ||||
-rw-r--r-- | mpc/.md5sum | 1 | ||||
-rw-r--r-- | mpc/.signature | 5 | ||||
-rw-r--r-- | mpc/Pkgfile | 21 |
4 files changed, 34 insertions, 0 deletions
diff --git a/mpc/.footprint b/mpc/.footprint new file mode 100644 index 0000000..da58a40 --- /dev/null +++ b/mpc/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/mpc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/bash-completion/ +drwxr-xr-x root/root usr/share/bash-completion/completions/ +-rwxr-xr-x root/root usr/share/bash-completion/completions/mpc-completion.bash diff --git a/mpc/.md5sum b/mpc/.md5sum new file mode 100644 index 0000000..6093ae6 --- /dev/null +++ b/mpc/.md5sum @@ -0,0 +1 @@ +c756f9c082af2a9c814a3e11308a6ebe v0.35.tar.gz diff --git a/mpc/.signature b/mpc/.signature new file mode 100644 index 0000000..764ba4e --- /dev/null +++ b/mpc/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/nullspoon.pub +RWThnm0RuVZhZpEiz65qB5t+NF7LVcLcPAjl8LMN+JkwVPKVbxcD+lgCm46XAP0+gs2va8omjPqvc4PZE/piAAoM8KKpBYwj2QY= +SHA256 (Pkgfile) = fc313ee80f3401af0a34ff575d08847fbfab731bdf5ea5157a1230c5ae333aa5 +SHA256 (.footprint) = c065a0d63035985adb5a338ae3605752d983cf4343a0e3c8e1778287567a5a82 +SHA256 (v0.35.tar.gz) = 03f9f133c13dceae8a5ba7ae4e31f3e6eeb198e8df94df2a3f216a7d433a3adf diff --git a/mpc/Pkgfile b/mpc/Pkgfile new file mode 100644 index 0000000..e3de85d --- /dev/null +++ b/mpc/Pkgfile @@ -0,0 +1,21 @@ +# Description: Command line client for MPD +# URL: https://github.com/MusicPlayerDaemon/mpc +# Maintainer: Aaron Ball, nullspoon at oper dot io +# Depends on: mpd + +name=mpc +version=0.35 +release=1 +source=(https://github.com/MusicPlayerDaemon/mpc/archive/refs/tags/v${version}.tar.gz) + +build () { + cd ${name}-${version} + meson build --prefix=/usr + ninja -C build + DESTDIR="${PKG}" ninja -C build install + install -D -m 755 \ + contrib/mpc-completion.bash \ + "${PKG}/usr/share/bash-completion/completions/mpc-completion.bash" + + rm -r "${PKG}/usr/share/doc" +} |