From c4012017035c695a7a6fe13511c93de8d7a050c8 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Tue, 3 Nov 2015 05:02:16 -0600 Subject: [PATCH] Update README.md --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index f240023..91a9a26 100644 --- a/README.md +++ b/README.md @@ -16,5 +16,33 @@ - exo (Arch) - libexo (Ubuntu) +### How To Build +The process is slightly different depending on how you obtain the source. + +#### Use Git To Clone This Repo +```sh +git clone https://github.com/Antergos/lightdm-webkit2-greeter.git greeter +cd greeter +git submodule init +./autogen.sh --prefix=/usr +make +sudo make install +``` + +#### Download Repo In Archive Format (tar.gz, zip, etc) +```sh +wget https://github.com/Antergos/lightdm-webkit2-greeter/archive/master.zip +unzip master.zip +cd lightdm-webkit2-greeter-master/themes +rm -rf antergos +wget https://github.com/Antergos/lightdm-webkit-theme-antergos/archive/master.zip +unzip master.zip +mv lightdm** antergos +cd ../../ +./autogen.sh --prefix=/usr +make +sudo make install +``` +