Compiling
Here are the instructions how to compile and install the Microfeed reference implementation from source code.
libmicrofeed
The libmicrofeed contains libmicrofeed-common, libmicrofeed-provider, and libmicrofeed-subscriber libraries that are used by the other Microfeed packages.
- Fetch the source code
git clone git://gitorious.org/microfeed/libmicrofeed.git - Enter the source code directory
cd libmicrofeed - Generate the configure.sh script (autotools are required)
autoreconf --install - Configure the package
./configure --prefix=/usr - Compile the source code
make - Install the library
make install - Leave the directory
cd ..
microfeed-utils
The microfeed-utils contains configuration and other utilities. The libmicrofeed package must be installed before compiling this.
- Fetch the source code
git clone git://gitorious.org/microfeed/microfeed-utils.git - Enter the source code directory
cd microfeed-utils - Generate the configure.sh script (autotools are required)
autoreconf --install - Configure the package
./configure --prefix=/usr - Compile the source code
make - Install the utilities
make install - Leave the directory
cd ..
microfeed-providers-unstable
The microfeed-providers-unstable contains the Twitter provider currently. The libmicrofeed package must be installed before compiling this.
- Fetch the source code
git clone git://gitorious.org/microfeed/microfeed-providers-unstable.git - Enter the source code directory
cd microfeed-providers-unstable - Generate the configure.sh script (autotools are required)
autoreconf --install - Configure the package
./configure --prefix=/usr - Compile the source code
make - Install the providers
make install - Leave the directory
cd ..
Now you are ready to try out the Microfeed framework.

