mpc-bar

macOS menu bar client for the Music Player Daemon
Log | Files | Refs | README | LICENSE

commit b0393dec24d8b1a26e70397f93b055b988449bd0
parent 549502ba31dded2710b18dcb96068641329a5372
Author: Spencer Williams <spnw@plexwave.org>
Date:   Wed, 18 Mar 2026 21:57:54 -0400

Explicitly compile against Lua 5.4

Diffstat:
MMakefile | 4++--
Mmpc-bar.m | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,6 @@ TARGET = mpc-bar -CFLAGS = -O2 -fobjc-arc -Wall -LDFLAGS = -lmpdclient -llua -framework Cocoa +CFLAGS = -I/usr/local/opt/lua@5.4/include -O2 -fobjc-arc -Wall +LDFLAGS = -L/usr/local/opt/lua@5.4/lib -lmpdclient -llua5.4 -framework Cocoa OUTPUT_OPTION=-MMD -MP -o $@ BINDIR = /usr/local/bin diff --git a/mpc-bar.m b/mpc-bar.m @@ -30,7 +30,7 @@ #import <Cocoa/Cocoa.h> -#define VERSION "0.5.0" +#define VERSION "0.5.1" #define TITLE_MAX_LENGTH 96 #define SLEEP_INTERVAL 0.2