f3aaaf5947
* libsimpleio release 1.20010.1 Minor improvements: Added readback parameter to GPIO.RemoteIO.Create. Added definitions for Raspberry Pi 4 extra I2C buses to packages RaspberryPi and MUNTS_0018. * remoteio release 1.20010.1 Minor improvements: Added readback parameter to GPIO.RemoteIO.Create.
49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
TOML
name = "remoteio"
|
|
description = "Remote I/O Protocol Client Library for GNAT Ada"
|
|
version = "1.20010.1"
|
|
licenses = "BSD-1-Clause"
|
|
website = "https://github.com/pmunts/libsimpleio"
|
|
|
|
authors = ["Philip Munts"]
|
|
maintainers = ["Philip Munts <phil@munts.net>"]
|
|
maintainers-logins = ["pmunts"]
|
|
|
|
project-files = ["remoteio.gpr", "programs.gpr"]
|
|
|
|
tags = ["embedded", "linux", "remoteio", "adc", "dac", "gpio", "i2c", "motor",
|
|
"pwm", "sensor", "serial", "servo", "spi", "stepper"]
|
|
|
|
[available."case(os)"]
|
|
'linux|windows' = true
|
|
"..." = false
|
|
|
|
# Linux needs libhidapi-dev and/or libusb-1.0-0-dev installed
|
|
|
|
[[depends-on]]
|
|
[depends-on."case(os)"."linux"]
|
|
libhidapi = "*"
|
|
|
|
[[depends-on]]
|
|
[depends-on."case(os)"."linux"]
|
|
libusb = "~1.0"
|
|
|
|
# On Linux, patch hid-hidapi.ads to link with libhidapi-hidraw.so
|
|
|
|
[[actions."case(os)".linux]]
|
|
type = "post-fetch"
|
|
command = ["sh", "-c", "sed -i 's/lhidapi/lhidapi-hidraw/g' src/objects/hid/hid-hidapi.ads"]
|
|
|
|
# On Windows, copy .DLL files to ./bin/ (for execution) and ./lib/ (for linking)
|
|
|
|
[[actions."case(os)".windows]]
|
|
type = "post-fetch"
|
|
command = ["sh", "-c", "mkdir -p ./bin && cp src/win64/*.dll ./bin && mkdir -p ./lib && cp src/win64/*.dll ./lib"]
|
|
|
|
[origin]
|
|
hashes = [
|
|
"sha256:81c2457e882c9fa28532a9732a030067e103014c15b568c668069c5651cba68e",
|
|
"sha512:3f33e1d13093abed1a9f8a6ccdcaedbfb53ac7f890485cd867433999f4ee8fd613209ee4dcbb0b1d3692f92885a51446e4593ffed2891d15938546311027a32d",
|
|
]
|
|
url = "http://repo.munts.com/alire/remoteio-1.20010.1.tbz2"
|
|
|