return { url = "https://repo.or.cz/tinycc.git", targets = { default = { build = function() config_cmd = "./configure --config-musl --exec-prefix="..prefix.." --prefix="..prefix.."/usr" e, h, c = os.execute(config_cmd) if c ~= 0 then print("Configuration Failure: ", c, type(c)) print("GIVEN UP") return c end e,h,c = os.execute("make") if c ~= 0 then print("Compilation Error: ", c, type(c)) print("GIVEN UP") return c end return 0 end, install = function() return os.execute("make install") end, uninstall = function() return os.execute("make uninstall") end, } } }