irssi-win-builds/README.md
2022-10-14 23:09:14 +02:00

59 lines
1.8 KiB
Markdown
Executable File

Irssi builds for Windows (on Cygwin without perl).
==================================================
### Irssi 1.4.1 builds:
* **Windows downloads:**
* [irssi-1.4.1-win-32bit-build1.7z](https://drive.proton.me/urls/534GDJXKDW#pqY8UqL3D558)
* [irssi-1.4.1-win-64bit-build1.7z](https://drive.proton.me/urls/534GDJXKDW#pqY8UqL3D558)
* **Source code:**
* [irssi-1.4.1.tar.xz](https://drive.proton.me/urls/534GDJXKDW#pqY8UqL3D558)
* [irssi-1.4.1.tar.gz](https://drive.proton.me/urls/534GDJXKDW#pqY8UqL3D558)
### 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 `C:\` or `C:\Program Files\`.
* Open the folder `Irssi`.
* Run the script `Install.cmd`.
### How to build irssi on Cygwin
* Install [Cygwin](http://cygwin.com/) and add the following packages to the default configuration:
```shell
* 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
````
* Download [irssi-1.4.1.tar.gz](https://drive.proton.me/urls/534GDJXKDW#pqY8UqL3D558) and save it to `C:\Cygwin\home\<User>\`.
* Open a Cygwin terminal, and run the following commands:
```shell
$ tar zxvf irssi-1.4.1.tar.gz
$ cd irssi-1.4.1
$ ./configure --with-proxy --with-bot --with-perl=no --prefix=/usr --enable-true-color
$ make
$ make install
$ irssi
````
### External links:
* [Irssi homepage](http://irssi.org/)
* [Irssi source code (Github)](https://github.com/irssi/irssi)
* [Cygwin homepage](https://www.cygwin.com/)