corectl

CHICKEN egg for controlling LEDs on the project 0001 keyboard

git clone https://git.8pit.net/corectl.git

 1((author "Sören Tempel")
 2 (synopsis "Control LEDs on Core Mechanics project 0001")
 3 (license "GPLv3")
 4 (dependencies srfi-1 srfi-4)
 5 (components
 6   (program ./bin/corectl
 7            (component-dependencies corectl)
 8            (source "./bin/corectl.scm"))
 9   (extension corectl
10              (source "corectl.scm")
11              (source-dependencies
12                "./lib/util.scm"
13                "./lib/ffi.scm"
14                "./lib/libusb.scm"
15                "./lib/packet.scm"
16                "./lib/corectl.scm")
17
18              (csc-options "-I/usr/include/libusb-1.0")
19              (link-options "-L" "-lusb-1.0"))))