summaryrefslogtreecommitdiff
path: root/build-aux/appveyor-install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/appveyor-install.sh')
-rwxr-xr-xbuild-aux/appveyor-install.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/build-aux/appveyor-install.sh b/build-aux/appveyor-install.sh
deleted file mode 100755
index 459c955..0000000
--- a/build-aux/appveyor-install.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# Pre-install script for appveyor: install build deps
-
-# Get mingw type, if any, from MSYSTEM
-case $MSYSTEM in
- MINGW32)
- MINGW_ARCH=i686
- PREFIX=/mingw32
- ;;
- MINGW64)
- MINGW_ARCH=x86_64
- PREFIX=/mingw64
- ;;
-esac
-
-# GLib
-pacman --noconfirm -S mingw-w64-$MINGW_ARCH-glib2 glib2-devel mingw-w64-$MINGW_ARCH-hunspell mingw-w64-$MINGW_ARCH-hunspell-en
-
-# UnitTest++ is not packaged in mingw
-wget https://github.com/unittest-cpp/unittest-cpp/releases/download/v1.6.1/unittest-cpp-1.6.1.tar.gz
-tar zxvf unittest-cpp-1.6.1.tar.gz
-cd unittest-cpp-1.6.1
-./configure --prefix=$PREFIX && make && make install
-cd ..