1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
string setWhere(string where, string defaultWhere)
{
if (where == "")
where = defaultWhere;
md(where);
return where;
}
void install(string what, string where)
{
string path;
if (what == "program")
{
if (where == "")
where = BINARY;
path = get_path(where);
if (path != "")
md(path);
printf(" INSTALLING the executable `", where, "'\n");
run("icmbuild install program " + where);
exit(0);
}
if (what == "man")
{
where = setWhere(where, MAN);
printf(" INSTALLING the manual page at `", where, "'\n");
run("gzip -9 < tmp/man/" PROGRAM ".1 > " + where + "/" PROGRAM ".1.gz");
exit(0);
}
if (what == "std")
{
where = setWhere(where, STD);
printf(" INSTALLING the changelog at `", where, "\n");
run("gzip -9 < changelog > " + where + "/changelog.gz");
printf(" INSTALLING the html-manual page at `", where, "\n");
run("cp tmp/manhtml/" PROGRAM "man.html " + where);
exit(0);
}
exit(0);
}
|