X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Build;h=34f5e400e2794fd1dd93c30ff9796073456d413f;hb=a557d2ba9aae4a05e4b15c81ba5262da7caac2a5;hp=cf9f0547b3f2e019595867c8bb115740d79245b5;hpb=445edbc3c42bbd7880cc414cf153ddfd196bfc1c;p=builder.git diff --git a/Build b/Build index cf9f054..34f5e40 100644 --- a/Build +++ b/Build @@ -1,17 +1,41 @@ package "builder" { - version "0.1"; + version "2.0"; description "Mikkosoft Productions software builder"; require "mspcore"; - require "mspstrings"; - require "mspparser"; - require "msppath"; + require "mspdatafile"; + require "mspcrypto"; require "sigc++-2.0"; program "builder" { source "source"; + if_arch "windows" + { + build_info + { + library "ole32"; + library "advapi32"; + }; + }; install true; }; + + source_archive + { + source "bootstrap.sh"; + source "Readme.txt"; + source "License.txt"; + }; + + install "share/builder" + { + source "builderrc"; + }; + + install "share/builder/packages" + { + source "packages"; + }; };