irssi-win-builds/README.md

56 lines
2.1 KiB
Markdown
Raw Normal View History

2015-10-08 20:31:23 +02:00
Irssi builds for Windows
========================
2017-01-07 13:35:22 +01:00
### Irssi 1.0.0 builds (without perl):
2015-10-08 20:31:23 +02:00
* **Windows downloads:**
2017-01-07 13:35:22 +01:00
* [irssi-1.0.0-win-32bit-build1.7z](https://github.com/q3aql/irssi-win/releases/download/v1.0.0/irssi-1.0.0-win-32bit-build1.7z)
* [irssi-1.0.0-win-64bit-build1.7z](https://github.com/q3aql/irssi-win/releases/download/v1.0.0/irssi-1.0.0-win-64bit-build1.7z)
2016-10-09 13:05:08 +02:00
2015-10-08 20:31:23 +02:00
* **Source code:**
2017-01-07 13:35:22 +01:00
* [irssi-1.0.0.tar.xz](https://github.com/q3aql/irssi-win/releases/download/v1.0.0/irssi-1.0.0.tar.xz)
* [irssi-1.0.0.tar.gz](https://github.com/q3aql/irssi-win/releases/download/v1.0.0/irssi-1.0.0.tar.gz)
2015-10-08 20:31:23 +02:00
### How to use:
* **Instructions:**
* Unzip the package with [7-zip](http://www.7-zip.org/) or [Winrar](http://www.rarlab.com/).
* Copy the folder `irssi` to system. For example: `C:\Program Files\irssi`.
* (_**Optional**_) Add the folder to [PATH](https://www.google.es/search?q=add+folder+to+PATH+on+Windows) variable.
* Open the folder `irssi`.
* Run the script `irssi.cmd`.
2015-10-08 20:31:23 +02:00
### How to build irssi on Cygwin
* Install [Cygwin](http://cygwin.com/) and add the following packages to the default configuration:
* `Devel/gcc-core`
* `Devel/gcc-g++`
* `Devel/gettext`
* `Devel/gettext-devel (missing libintl.a)`
* `Devel/libncurses-devel (terminfo support)`
* `Devel/make`
* `Devel/pkgconfig (detects glib2)`
* `Interpreters/perl`
* `Libs/glib2`
* `Libs/glib2-devel`
* `Libs/openssl`
* `Libs/openssl-devel`
2017-01-07 13:35:22 +01:00
* Download [irssi-1.0.0.tar.gz](https://github.com/q3aql/irssi-win/releases/download/v1.0.0/irssi-1.0.0.tar.gz) and save it to `C:\Cygwin\home\<User>\`.
2015-10-08 20:31:23 +02:00
* Open a Cygwin terminal, and run the following commands:
2017-01-07 13:35:22 +01:00
* `$ tar zxvf irssi-1.0.0.tar.gz`
* `$ cd irssi-1.0.0`
2016-03-24 16:27:11 +01:00
* `$ ./configure --with-proxy --with-bot --with-perl=no --prefix=/usr --enable-true-color`
2015-10-08 20:31:23 +02:00
* `$ make`
* `$ make install`
2015-10-08 20:44:33 +02:00
* `$ irssi`
2015-10-08 20:31:23 +02:00
### External links:
* [Irssi homepage](http://irssi.org/)
* [Irssi source code (Github)](https://github.com/irssi/irssi)
* [Cygwin homepage](https://www.cygwin.com/)