This is an old revision of the document!
Base on:
NOTE: Latest versions doesn't support Windows XP, use 20150916 instead.
Install compiler:
pacman -S mingw-w64-i686-gcc
pacman -S mingw-w64-x86_64-gcc
Install autotools and make:
pacman -S automake autoconf libtool make
Install git, pkg-config and wget:
pacman -S git pkgconfig wget
Install dependencies from sources…
cd /usr/src wget http://prdownloads.sourceforge.net/expat/expat-2.2.0.tar.bz2 tar xvjf expat-2.2.0.tar.bz2 cd expat-2.2.0/ ./configure --prefix=/usr make install
cd /usr/src wget http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz tar xvzf libsndfile-1.0.28.tar.gz cd libsndfile-1.0.28 ./configure --prefix=/usr make install
cd /usr/src wget http://www.aasimon.org/public/msys-dist/zr-autotools-1.0.0.tar.gz tar xvzf zr-autotools-1.0.0.tar.gz wget http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.6.0.tar.bz2 tar xvjf zita-resampler-1.6.0.tar.bz2 cd zr-autotools-1.0.0 ./configure --prefix=/usr --with-zita-sources=/usr/src/zita-resampler-1.6.0 make install
cd /usr/src wget http://dev-www.libreoffice.org/src/cppunit-1.14.0.tar.gz cd cppunit-1.14.0 ./configure --prefix=/usr --disable-werror make install
CPPUNIT_CPPFLAGS=-I/usr/include \ EXPAT_LDFLAGS=-L/usr/lib EXPAT_CFLAGS=-I/usr/include \ ZITA_LDFLAGS=-L/usr/lib ZITA_CPPFLAGS=-I/usr/include \ ./configure --disable-cli --disable-lv2 --disable-vst \ --enable-resampler=zita --with-test