Welcome to mirror list, hosted at ThFree Co, Russian Federation.

win32-build.sh « .travis - github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c058f0c6ac7debe379d3e051f36c61366d9981f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -e

GITREV=$(git rev-parse --short=7 HEAD)
FULLVERS="$(date +%Y%m%d)~${GITREV}~$(cat VERSION)~${TRAVIS_BUILD_NUMBER}"

CC="i686-w64-mingw32-gcc" \
DLL_LD_FLAGS="-static-libgcc" \
make -f Makefile.mingw \
    install \
    GLIB_GENMARSHAL="glib-genmarshal" \
    PLUGIN_VERSION="${FULLVERS}" \
    WIN32_TREE_TOP="win32-dev/pidgin-2.10.11"