-
Notifications
You must be signed in to change notification settings - Fork 6
Installation
Mulder is written in C#, so you will need to install the .NET runtime or Mono. .NET 4.0 and up, is supported.
If .NET or Mono are not installed on your system yet, check out the .NET page or Mono page to download a .NET version for your system. Alternatively, if you have a Unix-like operating system, consider using mope, a tool that makes managing your Mono installation(s) a whole lot easier.
All dependencies are now taken care of, and installing mulder should now be as easy as this. Visit the downloads section and download the latest version. Unzip the contents and you will notice two folders, one for .NET and the other for Mono. Choose the corresponding folder depending on your system. Place the contents in your path somewhere and you're ready to go. In the future we will provide an easier way, like chocolatety.
To make sure that mulder was installed correctly, run mulder help. It should print the help information, like this:
% mulder help mulder, a simple static site generator written in C# usage: mulder [options] [] ... %
If you get a “command not found” error when trying to run mulder
, you may have to adjust your $PATH
to include the path to the directory where you put mulder.
The current version of mulder is 0.1.0, released on Aug 16, 2012.
You can also install mulder from the repository if you want to take advantage of the latest features and improvements in mulder. Be warned that the versions from the repository may be unstable, so it is recommended to install released version of mulder if you want to stay safe. You can install mulder from the git repository like this:
~% git clone git://github.com/dragan/mulder.git ~% cd mulder ~/mulder% ./sake build ~/mulder% ./sake merge
The output of those commands will create a binary of mulder located in the artifacts/bin directory. If you're on a Unix-like system, I have created a shell script that can install mulder for you. Just modify it by changing where you cloned mulder and then run it. The default install location is /usr/local
, use the --PREFIX flag to install in another location.