Building on Linux is quick and easy, on Ubuntu even more so! These instructions are known-working on Ubuntu karmic, lucid and oneiric and have been reported to work verbatim on other versions and even Debian squeeze too. The commands aptitude and apt-get are typical of Ubuntu and Debian distributions. To build on others, you may need to find out what the packages are called on those systems.
$ sudo apt-get build-dep fldigi
$ sudo apt-get install git git-core libcurl4-openssl-dev libjpeg62-dev autoconf
$ git clone git://github.com/jamescoxon/dl-fldigi.git
$ cd dl-fldigi
$ autoreconf -vfi
$ ./configure --disable-flarq
$ make
If you have more than one core in your CPU you can run `make -j3` (for a dual core) or -j5 (for quad core) (typically no. of cores + 1). If you want your computer to be usable during the compile (well, responsive) then you may choose to run -j3 on a quad core, or without the -j flag at all on a dual core to have a core free to run your web browser.
–diable-flarq is not strictly necessary, however, you probably won't use it, so not building it speeds things up.
$ ./src/dl-fldigi
$ ./src/dl-fldigi --hab
Note: running ”./src/dl-fldigi” starts dl-fldigi in 'offline' mode. It won't upload or phone home, won't download payload data and will use the cache if any. You have to use the config tab or the dl menu to go online.
Starting with –hab gets you a customised “HAB UI” and is automatically “online” - but not configured to receive. See the payload drop down box and “Autoconfigure” button
The Version 2.0 section on the
dl-fldigi page has more usage information.