Tom Willemse
b86754cb92
There seems to be magic going on here. Once the speed has been set for the device once the OS (at least GNU/Linux) remembers the setting and it doesn't have to happen again after. Since I was porting from my Emacs module, I kept running Emacs and it kept setting the speed, which meant that my tests with Guile kept working. After a reboot, it stopped. This change makes sure that the speed is set. I'm not sure if the raw is necessary, but it's in the example, and it seems to work for now, so I'll keep it around.
36 lines
1.1 KiB
Scheme
36 lines
1.1 KiB
Scheme
(hall-description
|
|
(name "inkplate")
|
|
(prefix "guile")
|
|
(version "0.1")
|
|
(author "Tom Willemse")
|
|
(copyright (2023))
|
|
(synopsis "")
|
|
(description "")
|
|
(home-page "")
|
|
(license gpl3+)
|
|
(dependencies `(("guile-termios" (termios) ,guile-termios)))
|
|
(skip ())
|
|
(files (libraries ((scheme-file "inkplate")))
|
|
(tests ((directory "tests" ((scheme-file "inkplate")))))
|
|
(programs ((directory "scripts" ())))
|
|
(documentation
|
|
((text-file "ChangeLog")
|
|
(text-file "AUTHORS")
|
|
(text-file "NEWS")
|
|
(symlink "README" "README.org")
|
|
(text-file "HACKING")
|
|
(text-file "COPYING")
|
|
(directory "doc" ((texi-file "inkplate")))
|
|
(directory
|
|
"examples"
|
|
((scheme-file "date")))))
|
|
(infrastructure
|
|
((in-file "pre-inst-env")
|
|
(automake-file "Makefile")
|
|
(autoconf-file "configure")
|
|
(scheme-file "guix")
|
|
(text-file ".gitignore")
|
|
(scheme-file "hall")
|
|
(directory
|
|
"build-aux"
|
|
((scheme-file "test-driver")))))))
|