|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| glade/ | H | 12-Feb-2021 | - | 3,351 | 3,347 |
| images/ | H | 03-May-2022 | - | | |
| lib/ | H | 12-Feb-2021 | - | 323,402 | 222,698 |
| m4/ | H | 12-Feb-2021 | - | 343 | 304 |
| po/ | H | 07-May-2022 | - | 226 | 186 |
| po-Engine/ | H | 12-Feb-2021 | - | 8,666 | 7,040 |
| po-Engine-Campfire/ | H | 12-Feb-2021 | - | 2,476 | 2,069 |
| po-Engine-IRC/ | H | 12-Feb-2021 | - | 11,442 | 9,216 |
| po-Engine-JabbR/ | H | 12-Feb-2021 | - | 1,638 | 1,388 |
| po-Engine-MessageBuffer/ | H | 12-Feb-2021 | - | 2,998 | 2,460 |
| po-Engine-Twitter/ | H | 12-Feb-2021 | - | 6,123 | 4,977 |
| po-Engine-XMPP/ | H | 12-Feb-2021 | - | 7,641 | 6,311 |
| po-Frontend/ | H | 12-Feb-2021 | - | 4,319 | 3,810 |
| po-Frontend-GNOME/ | H | 12-Feb-2021 | - | 38,608 | 30,860 |
| po-Frontend-GNOME-IRC/ | H | 12-Feb-2021 | - | 3,023 | 2,435 |
| po-Frontend-GNOME-Twitter/ | H | 12-Feb-2021 | - | 1,192 | 1,024 |
| po-Frontend-GNOME-XMPP/ | H | 12-Feb-2021 | - | 2,006 | 1,674 |
| po-Server/ | H | 12-Feb-2021 | - | 4,417 | 3,586 |
| src/ | H | 12-Feb-2021 | - | 94,335 | 76,469 |
| HACKING.md | H A D | 12-Feb-2021 | 2.6 KiB | 108 | 90 |
| LICENSE | H A D | 06-Nov-2011 | 17.6 KiB | 341 | 281 |
| Makefile.am | H A D | 12-Feb-2021 | 9.8 KiB | 337 | 297 |
| Makefile.in | H A D | 12-Feb-2021 | 38.1 KiB | 1,188 | 1,064 |
| Makefile.include | H A D | 06-Feb-2012 | 5 KiB | 87 | 60 |
| README.md | H A D | 12-Feb-2021 | 1.7 KiB | 66 | 46 |
| aclocal.m4 | H A D | 12-Feb-2021 | 146.6 KiB | 3,904 | 3,649 |
| compile | H A D | 05-Nov-2018 | 7.2 KiB | 349 | 259 |
| config.guess | H A D | 12-Feb-2021 | 43.2 KiB | 1,481 | 1,288 |
| config.rpath | H A D | 12-Feb-2021 | 17.9 KiB | 667 | 563 |
| config.sub | H A D | 12-Feb-2021 | 35.3 KiB | 1,802 | 1,661 |
| configure | H A D | 03-May-2022 | 401.4 KiB | 12,843 | 10,660 |
| configure.ac | H A D | 12-Feb-2021 | 26.5 KiB | 839 | 759 |
| install-sh | H A D | 12-Feb-2021 | 15 KiB | 519 | 337 |
| missing | H A D | 12-Feb-2021 | 6.7 KiB | 216 | 143 |
README.md
1Software Requirements
2=====================
3First you will need to install a few libraries to compile the source
4
5Build tools & libraries:
6* Automake, Autoconf, gettext, pkg-config
7* Mono SDK (>= 4.6.2)
8* Nini (>= 1.1)
9* log4net
10* SQLite3
11* GTK# (>= 2.10) (optional, but required for the GNOME frontend)
12* Notify# (optional)
13* Indicate# / MessagingMenu# (optional)
14* DBus# / NDesk.DBus (optional)
15* GtkSpell (optional)
16* STFL (optional)
17
18Depending on your operating system and favorite distribution the installation of the listed applications varies. For Debian based distributions it's just a matter of the following commands:
19
20 apt-get install mono-devel mono-xbuild libnini-cil-dev liblog4net-cil-dev libgtk2.0-cil-dev libglade2.0-cil-dev libnotify-cil-dev libdbus2.0-cil-dev libdbus2.0-cil-dev lsb-release
21
22Compiling Source
23================
24
25 ./autogen.sh || ./configure
26 make
27
28Installing
29==========
30
31 make install
32
33Running
34=======
35
36Now you can start Smuxi from the GNOME or KDE menu.
37
38Source Structure
39================
40
41src/
42----
43
44This directory contains the source code of all Smuxi components.
45
46lib/
47----
48
49This directory contains libraries that Smuxi needs and ships as part of Smuxi.
50
51po\*/
52-----
53
54These directories contain translation files based on gettext.
55
56debian/
57-------
58
59The debian/ directory contains upstream packaging used for the daily development
60builds for Ubuntu and Debian found on [launchpad][] (which you can subscribe to
61via `sudo add-apt-repository -y ppa:meebey/smuxi-daily && sudo apt update`).
62The official (downstream) Debian packaging can be found on [here][].
63
64 [launchpad]: https://launchpad.net/~meebey/+archive/smuxi-daily
65 [here]: http://git.debian.org/?p=pkg-cli-apps/packages/smuxi.git
66