aports.lua: read variables frrom abuild.conf

This commit is contained in:
Natanael Copa 2011-09-30 09:25:10 +00:00
parent 0b83646614
commit aa65657a76
1 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,18 @@
module(..., package.seeall)
abuild_conf_file = "/etc/abuild.conf"
local abuild_conf = {}
function get_abuild_conf(var)
if abuild_conf[var] == nil then
local f = io.popen(" . "..abuild_conf_file..' ; echo -n "$'..var..'"')
abuild_conf[var] = f:read("*all")
f:close()
end
return abuild_conf[var]
end
local function split_subpkgs(str)
local t = {}
local e