15 lines
443 B
Bash
Executable File
15 lines
443 B
Bash
Executable File
./bootstrap.sh && \
|
|
LDFLAGS="-L/opt/local/i586-mingw32msvc/lib" \
|
|
CPPFLAGS="-I/opt/local/i586-mingw32msvc/include -DQ_OS_WIN32" \
|
|
./configure \
|
|
--with-qt-dir=/usr/local/trolltech/qt-mingw32/include \
|
|
--prefix=/opt/local/i586-mingw32msvc \
|
|
--build=x86_64 \
|
|
--host=i586-mingw32msvc && \
|
|
make && \
|
|
sudo make install && \
|
|
make clean && \
|
|
./configure --with-qt-dir=/usr/local/trolltech/qt/include && \
|
|
make check && \
|
|
sudo make install
|