Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fvbe.git;a=commitdiff;h=89a29fd797b0bffbe7edfde50fed47e7dc9fb935
commit 89a29fd797b0bffbe7edfde50fed47e7dc9fb935 Author: James Buren <[email protected]> Date: Wed Mar 20 21:19:14 2013 -0500 add skeleton tool source diff --git a/src/skeleton-tool.c b/src/skeleton-tool.c new file mode 100644 index 0000000..a7a5497 --- /dev/null +++ b/src/skeleton-tool.c @@ -0,0 +1,35 @@ +// fwsetup - flexible installer for Frugalware +// Copyright (C) 2013 James Buren +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +#include "local.h" + +static bool skeleton_start(void) +{ + return true; +} + +static bool skeleton_finish(void) +{ + return true; +} + +struct tool skeleton_tool = +{ + skeleton_start, + skeleton_finish, + __FILE__ +}; _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
