diff options
author | Max Kellermann <max.kellermann@gmail.com> | 2018-10-23 18:38:11 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-10-23 13:23:47 -0700 |
commit | 694e91f4952d477eef2eaef67948889122cdd98a (patch) | |
tree | 76ee8faca29fd29cc82a2c463c2f530a12650fd4 /meta-multimedia/recipes-multimedia/musicpd/ncmpc_0.33.bb | |
parent | 5e999c22c3499dd61201f1782a7cce4f99c76d5f (diff) | |
download | meta-openembedded-694e91f4952d477eef2eaef67948889122cdd98a.tar.gz |
ncmpc: update to 0.33
Several build options have been changed from "boolean" to "feature",
and thus we have to change "true/false" to "enabled/disabled".
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/musicpd/ncmpc_0.33.bb')
-rw-r--r-- | meta-multimedia/recipes-multimedia/musicpd/ncmpc_0.33.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/musicpd/ncmpc_0.33.bb b/meta-multimedia/recipes-multimedia/musicpd/ncmpc_0.33.bb new file mode 100644 index 000000000..9e8522a9e --- /dev/null +++ b/meta-multimedia/recipes-multimedia/musicpd/ncmpc_0.33.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | SUMMARY = "A curses client for the Music Player Daemon" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | HOMEPAGE = "https://www.musicpd.org/clients/ncmpc/" | ||
5 | |||
6 | inherit meson | ||
7 | |||
8 | DEPENDS += " \ | ||
9 | boost \ | ||
10 | pcre \ | ||
11 | ncurses \ | ||
12 | libmpdclient \ | ||
13 | " | ||
14 | |||
15 | PACKAGECONFIG ??= "colors locale mouse nls help_screen artist_screen search_screen song_screen key_screen lyrics_screen outputs_screen" | ||
16 | |||
17 | PACKAGECONFIG[colors] = "-Dcolors=true,-Dcolors=false" | ||
18 | PACKAGECONFIG[lirc] = "-Dlirc=enabled,-Dlirc=disabled,lirc" | ||
19 | PACKAGECONFIG[locale] = "-Dlocale=enabled,-Dlocale=disabled" | ||
20 | PACKAGECONFIG[mini] = "-Dmini=true,-Dmini=false" | ||
21 | PACKAGECONFIG[mouse] = "-Dmouse=enabled,-Dmouse=disabled" | ||
22 | PACKAGECONFIG[nls] = "-Dnls=enabled,-Dnls=disabled,gettext-native" | ||
23 | |||
24 | PACKAGECONFIG[help_screen] = "-Dhelp_screen=true,-Dhelp_screen=false" | ||
25 | PACKAGECONFIG[artist_screen] = "-Dartist_screen=true,-Dartist_screen=false" | ||
26 | PACKAGECONFIG[search_screen] = "-Dsearch_screen=true,-Dsearch_screen=false" | ||
27 | PACKAGECONFIG[song_screen] = "-Dsong_screen=true,-Dsong_screen=false" | ||
28 | PACKAGECONFIG[key_screen] = "-Dkey_screen=true,-Dkey_screen=false" | ||
29 | PACKAGECONFIG[lyrics_screen] = "-Dlyrics_screen=true,-Dlyrics_screen=false" | ||
30 | PACKAGECONFIG[outputs_screen] = "-Doutputs_screen=true,-Doutputs_screen=false" | ||
31 | PACKAGECONFIG[chat_screen] = "-Dchat_screen=true,-Dchat_screen=false" | ||
32 | |||
33 | SRC_URI = " \ | ||
34 | git://github.com/MusicPlayerDaemon/ncmpc \ | ||
35 | " | ||
36 | SRCREV = "8e98f89ff07b140e6357dab2a9a9f6432ae0e521" | ||
37 | S = "${WORKDIR}/git" | ||