mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-11 15:11:26 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
37 lines
1.6 KiB
BlitzBasic
37 lines
1.6 KiB
BlitzBasic
SUMMARY = "A curses client for the Music Player Daemon"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
|
HOMEPAGE = "https://www.musicpd.org/clients/ncmpc/"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
DEPENDS += " \
|
|
ncurses \
|
|
libpcre2 \
|
|
libmpdclient \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "python3-core"
|
|
|
|
PACKAGECONFIG ??= "colors locale mouse nls regex help_screen library_screen search_screen song_screen key_screen lyrics_screen outputs_screen"
|
|
|
|
PACKAGECONFIG[colors] = "-Dcolors=true,-Dcolors=false"
|
|
PACKAGECONFIG[lirc] = "-Dlirc=enabled,-Dlirc=disabled,lirc"
|
|
PACKAGECONFIG[locale] = "-Dlocale=enabled,-Dlocale=disabled"
|
|
PACKAGECONFIG[mini] = "-Dmini=true,-Dmini=false"
|
|
PACKAGECONFIG[mouse] = "-Dmouse=enabled,-Dmouse=disabled"
|
|
PACKAGECONFIG[nls] = "-Dnls=enabled,-Dnls=disabled,gettext-native"
|
|
PACKAGECONFIG[regex] = "-Dregex=enabled,-Dregex=disabled,pcre"
|
|
|
|
PACKAGECONFIG[help_screen] = "-Dhelp_screen=true,-Dhelp_screen=false"
|
|
PACKAGECONFIG[library_screen] = "-Dlibrary_screen=true,-Dlibrary_screen=false"
|
|
PACKAGECONFIG[search_screen] = "-Dsearch_screen=true,-Dsearch_screen=false"
|
|
PACKAGECONFIG[song_screen] = "-Dsong_screen=true,-Dsong_screen=false"
|
|
PACKAGECONFIG[key_screen] = "-Dkey_screen=true,-Dkey_screen=false"
|
|
PACKAGECONFIG[lyrics_screen] = "-Dlyrics_screen=true,-Dlyrics_screen=false"
|
|
PACKAGECONFIG[outputs_screen] = "-Doutputs_screen=true,-Doutputs_screen=false"
|
|
PACKAGECONFIG[chat_screen] = "-Dchat_screen=true,-Dchat_screen=false"
|
|
|
|
SRC_URI = "git://github.com/MusicPlayerDaemon/ncmpc;branch=master;protocol=https"
|
|
SRCREV = "f81f875fc5785383d24f54fb9bd3cf06efd915a4"
|