serialosc: fix `python3` references.

See #110462.

Closes #110499.

Signed-off-by: Daniel Nachun <9205048+danielnachun@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Miles Liu 2022-09-13 09:36:43 +08:00 committed by BrewTestBot
parent 7aaccf9f8a
commit eeaf92ea68
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 5 additions and 3 deletions

View File

@ -21,6 +21,7 @@ class Serialosc < Formula
depends_on "confuse"
depends_on "liblo"
depends_on "libmonome"
depends_on "libuv"
on_linux do
depends_on "avahi"
@ -28,9 +29,10 @@ class Serialosc < Formula
end
def install
system "python3", "./waf", "configure", "--prefix=#{prefix}"
system "python3", "./waf", "build"
system "python3", "./waf", "install"
python3 = "python3.10"
system python3, "./waf", "configure", "--enable-system-libuv", "--prefix=#{prefix}"
system python3, "./waf", "build"
system python3, "./waf", "install"
end
service do