• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

glade/H12-Feb-2021-3,3513,347

images/H03-May-2022-

lib/H12-Feb-2021-323,402222,698

m4/H12-Feb-2021-343304

po/H07-May-2022-226186

po-Engine/H12-Feb-2021-8,6667,040

po-Engine-Campfire/H12-Feb-2021-2,4762,069

po-Engine-IRC/H12-Feb-2021-11,4429,216

po-Engine-JabbR/H12-Feb-2021-1,6381,388

po-Engine-MessageBuffer/H12-Feb-2021-2,9982,460

po-Engine-Twitter/H12-Feb-2021-6,1234,977

po-Engine-XMPP/H12-Feb-2021-7,6416,311

po-Frontend/H12-Feb-2021-4,3193,810

po-Frontend-GNOME/H12-Feb-2021-38,60830,860

po-Frontend-GNOME-IRC/H12-Feb-2021-3,0232,435

po-Frontend-GNOME-Twitter/H12-Feb-2021-1,1921,024

po-Frontend-GNOME-XMPP/H12-Feb-2021-2,0061,674

po-Server/H12-Feb-2021-4,4173,586

src/H12-Feb-2021-94,33576,469

HACKING.mdH A D12-Feb-20212.6 KiB10890

LICENSEH A D06-Nov-201117.6 KiB341281

Makefile.amH A D12-Feb-20219.8 KiB337297

Makefile.inH A D12-Feb-202138.1 KiB1,1881,064

Makefile.includeH A D06-Feb-20125 KiB8760

README.mdH A D12-Feb-20211.7 KiB6646

aclocal.m4H A D12-Feb-2021146.6 KiB3,9043,649

compileH A D05-Nov-20187.2 KiB349259

config.guessH A D12-Feb-202143.2 KiB1,4811,288

config.rpathH A D12-Feb-202117.9 KiB667563

config.subH A D12-Feb-202135.3 KiB1,8021,661

configureH A D03-May-2022401.4 KiB12,84310,660

configure.acH A D12-Feb-202126.5 KiB839759

install-shH A D12-Feb-202115 KiB519337

missingH A D12-Feb-20216.7 KiB216143

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