13 lines
508 B
Bash
Executable file
13 lines
508 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
rm ./c/*
|
|
cd ./c
|
|
wget "https://github.com/FeralInteractive/gamemode/raw/master/lib/gamemode_client.h"
|
|
wget "https://github.com/FeralInteractive/gamemode/raw/master/lib/client_impl.c"
|
|
wget "https://github.com/FeralInteractive/gamemode/raw/master/lib/client_loader.c"
|
|
cd ..
|
|
|
|
# The output from translate-c isn't perfect, so we need this fix
|
|
zig translate-c ./c/gamemode_client.h -lc | sed "s#functor\(.*\)@alignCast\(.*\),\(.*\))#functor\1\3#" > ./src/gamemode_client.zig
|
|
|
|
rm -r ./zig-cache
|