From 0b977787374349328a21af0deade30d534cf3978 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 18 May 2022 23:40:38 +0100 Subject: fixed gcc loader/linker errors --- repo/util/mpdscribble/mpdscribble.xibuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 repo/util/mpdscribble/mpdscribble.xibuild (limited to 'repo/util/mpdscribble') diff --git a/repo/util/mpdscribble/mpdscribble.xibuild b/repo/util/mpdscribble/mpdscribble.xibuild new file mode 100644 index 0000000..a153361 --- /dev/null +++ b/repo/util/mpdscribble/mpdscribble.xibuild @@ -0,0 +1,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 +} -- cgit v1.2.1