blob: 27bc1d2ffbab1610da43c95b39dc6205cb46f110 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001SUMMARY = "C client library for the Music Player Daemon"
Brad Bishop6a62e0e2019-10-21 08:11:42 -04002LICENSE = "BSD-3-Clause"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08003LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
4HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
5
6inherit meson
7
8SRC_URI = " \
9 git://github.com/MusicPlayerDaemon/libmpdclient \
10"
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -050011SRCREV = "27767959442ef390aabb16790494ba93fed962ef"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012S = "${WORKDIR}/git"
13
14PACKAGECONFIG ??= "tcp"
15PACKAGECONFIG[tcp] = "-Dtcp=true,-Dtcp=false"
16
Patrick Williams213cb262021-08-07 19:21:33 -050017do_install:append() {
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018 # libmpdclient's Vala bindings are outdated and unmaintained; it
19 # is likely that nobody will ever use them, so let's not install
20 # them
21 rm -rf ${D}${datadir}/vala
22}