On Ubuntu, this won't compile unless I change the Makefile a little.
maple% lsb_release -irc
Distributor ID: Ubuntu
Release: 18.04
Codename: bionic
Apparently appindicator3-0.1 is not a valid pkg config.
diff --git a/Makefile b/Makefile
index 483c0aa..d9a1da4 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@ ifeq ($(OS),Windows_NT)
TRAY_CFLAGS := -DTRAY_WINAPI=1
TRAY_LDFLAGS :=
else ifeq ($(shell uname -s),Linux)
- TRAY_CFLAGS := -DTRAY_APPINDICATOR=1 $(shell pkg-config --cflags appindicator3-0.1)
- TRAY_LDFLAGS := $(shell pkg-config --libs appindicator3-0.1)
+ TRAY_CFLAGS := -DTRAY_APPINDICATOR=1 $(shell pkg-config --cflags appindicator-0.1)
+ TRAY_LDFLAGS := $(shell pkg-config --libs appindicator-0.1)
else ifeq ($(shell uname -s),Darwin)
TRAY_CFLAGS := -DTRAY_APPKIT=1
TRAY_LDFLAGS := -framework Cocoa
I don't think I know enough to make a pull request -- just tossing this info your way.
Cheers on a very cool project!
On Ubuntu, this won't compile unless I change the Makefile a little.
Apparently
appindicator3-0.1is not a valid pkg config.I don't think I know enough to make a pull request -- just tossing this info your way.
Cheers on a very cool project!