irssi-win-builds/README.md

59 lines
2.0 KiB
Markdown
Raw Normal View History

2021-04-02 13:41:11 +02:00
Irssi builds for Windows (on Cygwin without perl).
==================================================
2015-10-08 20:31:23 +02:00
2022-06-30 21:37:07 +02:00
### Irssi 1.4.1 builds:
2015-10-08 20:31:23 +02:00
* **Windows downloads:**
2022-06-30 21:37:07 +02:00
* [irssi-1.4.1-win-32bit-build1.7z](https://github.com/q3aql/irssi-win-builds/releases/download/v1.4.1/irssi-1.4.1-win-32bit-build1.7z)
* [irssi-1.4.1-win-64bit-build1.7z](https://github.com/q3aql/irssi-win-builds/releases/download/v1.4.1/irssi-1.4.1-win-64bit-build1.7z)
2016-10-09 13:05:08 +02:00
2015-10-08 20:31:23 +02:00
* **Source code:**
2022-06-30 21:42:54 +02:00
* [irssi-1.4.1.tar.xz](https://github.com/q3aql/irssi-win-builds/releases/download/v1.4.1/irssi-1.4.1.tar.xz)
* [irssi-1.4.1.tar.gz](https://github.com/q3aql/irssi-win-builds/releases/download/v1.4.1/irssi-1.4.1.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/).
2021-04-02 14:28:24 +02:00
* Copy the folder `Irssi` to `C:\` or `C:\Program Files\`.
* Open the folder `Irssi`.
* Run the script `Install.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:
2021-04-02 13:41:11 +02:00
```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
````
2022-06-30 21:37:07 +02:00
* Download [irssi-1.4.1.tar.gz](https://github.com/q3aql/irssi-win-builds/releases/download/v1.4.1/irssi-1.4.1.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:
2021-04-02 13:41:11 +02:00
```shell
2022-06-30 21:37:07 +02:00
$ tar zxvf irssi-1.4.1.tar.gz
$ cd irssi-1.4.1
2021-04-02 13:41:11 +02:00
$ ./configure --with-proxy --with-bot --with-perl=no --prefix=/usr --enable-true-color
$ make
$ make install
$ 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/)