vfox 2026.5.9

Interface to vfox plugins
Documentation
--- Compiles ag from source after download
--- @param ctx table Context provided by vfox
function PLUGIN:PostInstall(ctx)
    local cmd = require("cmd")

    local sdkInfo = ctx.sdkInfo["ag"]
    local path = sdkInfo.path

    -- Source files are extracted directly to the install path
    local srcDir = path

    --- Run autogen.sh to generate configure script
    cmd.exec("cd '" .. srcDir .. "' && ./autogen.sh")

    --- Run configure with prefix set to installation path
    --- Add -fcommon to CFLAGS for GCC 10+ compatibility (fixes multiple definition errors)
    local configureArgs = os.getenv("AG_CONFIGURE_ARGS") or ""
    local cflags = os.getenv("CFLAGS") or ""
    if cflags == "" then
        cflags = "-fcommon"
    else
        cflags = cflags .. " -fcommon"
    end
    cmd.exec("cd '" .. srcDir .. "' && CFLAGS='" .. cflags .. "' ./configure --prefix='" .. path .. "' " .. configureArgs)

    --- Run make
    cmd.exec("cd '" .. srcDir .. "' && make")

    --- Run make install
    cmd.exec("cd '" .. srcDir .. "' && make install")
end