about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-09-08 16:41:50 +0100
committerJames Booth <boothj5@gmail.com>2012-09-08 16:41:50 +0100
commit86d1ff605cc0edd92956083bc86a2b2b46144a34 (patch)
tree163dfd9548d17e56265303f5f93cb637a468835f
parent04605a5f6a29a228cd5c4c00b209bf9ea332dfd0 (diff)
downloadprofani-tty-86d1ff605cc0edd92956083bc86a2b2b46144a34.tar.gz
Added notes on cygwin install
-rw-r--r--cygwin52
1 files changed, 52 insertions, 0 deletions
diff --git a/cygwin b/cygwin
new file mode 100644
index 00000000..267ca8b2
--- /dev/null
+++ b/cygwin
@@ -0,0 +1,52 @@
+Install cygwin:
+
+http://www.cygwin.com/
+
+http://cygwin.com/setup.exe
+
+Choose git and wget
+
+mkdir projects-git
+git clone git://github.com/boothj5/profanity.git
+
+cd profanity
+
+wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
+
+chmod +x apt-cyg
+mv apt-cyg /usr/local/bin/
+
+git clone git://github.com/boothj5/head-unit.git
+
+cd head-unit
+apt-cyg install make gcc
+ln -s /usr/bin/gcc-3.exe /usr/bin/gcc.exe
+ln -s /usr/bin/g++-3.exe /usr/bin/g++.exe
+make
+make install
+
+cd ..
+git clone git://github.com/metajack/libstrophe.git
+
+cd libstrophe
+apt-cyg install automake autoconf pkg-config
+./bootstrap.sh
+./bootstrap.sh
+apt-cyg install openssl-devel expat zlib-devel
+make
+make install
+
+cd ..
+./bootstrap.sh
+apt-cyg install libncurses-devel 
+make
+make install
+
+cd ..
+./bootstrap.sh
+apt-cyg install libncurses-devel libxml2-devel libglib2.0-devel libcurl-devel
+
+
+
+
+