Blame autobuild/synfigstudio-cygwin-native-build.sh

a8fd8f
#!/bin/bash
a8fd8f
122fb6
export CYGWIN_SETUP="/cygdrive/c/synfig-build/cygwin-dist/setup-x86.exe"
122fb6
export SRCPREFIX=`dirname "$0"`
122fb6
SRCPREFIX=$(cd "$SRCPREFIX/.."; pwd)
a8fd8f
a8fd8f
# Install dependencies
a8fd8f
#-K http://cygwinports.org/ports.gpg -s ftp://ftp.cygwinports.org/pub/cygwinports -s http://mirrors.163.com/cygwin \
122fb6
CYGPORT_MIRROR=http://mirrors.kernel.org/sources.redhat.com/cygwinports
122fb6
a8fd8f
$CYGWIN_SETUP \
122fb6
-K http://cygwinports.org/ports.gpg -s $CYGPORT_MIRROR -s http://ftp.linux.kiev.ua/pub/cygwin/ \
a8fd8f
-P git \
a8fd8f
-P make \
a8fd8f
-P gcc-core \
a8fd8f
-P gcc-g++ \
a8fd8f
-P gdb \
a8fd8f
-P intltool \
a8fd8f
-P autoconf \
a8fd8f
-P automake \
a8fd8f
-P libtool \
a8fd8f
-P pkg-config \
a8fd8f
-P libcairo-devel \
a8fd8f
-P libpango1.0-devel \
a8fd8f
-P libboost-devel \
a8fd8f
-P libboost1.50 \
a8fd8f
-P libjpeg-devel \
a8fd8f
-P libpng-devel \
a8fd8f
-P p7zip \
122fb6
-P ImageMagick \
a8fd8f
-P libxml++2.6-devel  \
a8fd8f
-P libgtkmm2.4-devel \
a8fd8f
-q
a8fd8f
122fb6
cd $SRCPREFIX/ETL
a8fd8f
autoreconf --install --force
a8fd8f
./configure --prefix=/usr
a8fd8f
make install
a8fd8f
122fb6
cd $SRCPREFIX/synfig-core
c70f84
./bootstrap.sh
a8fd8f
./configure --prefix=/usr
a8fd8f
make -j4
a8fd8f
make install