aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/targets/win32.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/targets/win32.sh')
-rw-r--r--.travis/targets/win32.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/.travis/targets/win32.sh b/.travis/targets/win32.sh
deleted file mode 100644
index 1a6745f..0000000
--- a/.travis/targets/win32.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-build() {
- default_configure \
- CC= \
- CFLAGS="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4" \
- --host=i686-w64-mingw32 \
- --target=i686-w64-mingw32 \
- --disable-tests \
- --disable-git-receiver \
- --disable-make \
- --disable-runserver
- make blogc.exe
-
- local pn="$(grep PACKAGE_TARNAME config.h | cut -d\" -f2)"
- local pv="$(grep PACKAGE_VERSION config.h | cut -d\" -f2)"
- local dest_dir="${pn}-${pv}-${TARGET}"
-
- rm -rf "${dest_dir}"
- mkdir -p "${dest_dir}"
-
- cp .libs/blogc.exe "${dest_dir}/"
- cp ../LICENSE "${dest_dir}/"
- cp ../README.md "${dest_dir}/"
-
- zip "${dest_dir}.zip" "${dest_dir}"/*
-}
-
-deploy() {
- FILES=( *.zip )
- [[ ${RV} -eq 0 ]] && [[ "x${CC}" = "xgcc" ]]
-}