Last change
on this file since 25881 was
25881,
checked in by ecloud, 9 years ago
|
Actually reading of variants works fine. Improved connman example. Still no way to write variants though.
|
File size:
449 bytes
|
Line | |
---|
1 | ;;;; dbus.setup -*- Scheme -*- |
---|
2 | |
---|
3 | (use files utils) |
---|
4 | |
---|
5 | (make ( |
---|
6 | ("dbus.import.so" ("dbus.c") |
---|
7 | (compile -s -O3 -d0 dbus.import.scm)) |
---|
8 | ("dbus.so" ("dbus.c") |
---|
9 | (compile -s -O3 -d1 dbus.scm -C "`pkg-config --cflags dbus-1`" -L "`pkg-config --libs dbus-1`")) |
---|
10 | ("dbus.c" ("dbus.scm") |
---|
11 | (compile -t dbus.scm -O3 -d1 -X easyffi -C -g -j dbus))) |
---|
12 | '("dbus.so" "dbus.import.so")) |
---|
13 | |
---|
14 | (install-extension 'dbus |
---|
15 | `("dbus.so" "dbus.import.so") |
---|
16 | `((version 0.89))) |
---|
Note: See
TracBrowser
for help on using the repository browser.