blob: 3d01cc30159436d018d3f3b7948c9f559c7ee3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#!/bin/bash
# Bootstraps from an empty cabal to all the necessary haskell packages
# being installed, with the necessary patches to work on Android.
#
# You should install ghc-android first.
#
# Note that the newest version of packages is installed.
# It attempts to reuse patches for older versions, but
# new versions of packages often break cross-compilation by adding TH,
# etc
#
# Future work: Convert to using the method used here:
# https://github.com/kaoskorobase/ghc-ios-cabal-scripts/
set -e
if [ ! -d haskell-patches ]; then
cd standalone/android
fi
cabalopts="$@"
cabalinstall () {
echo cabal install "$@" "$cabalopts"
eval cabal install "$@" "$cabalopts"
}
patched () {
pkg=$1
shift 1
cabal unpack $pkg
cd $pkg*
git init
git config user.name dummy
git config user.email dummy@example.com
git add .
git commit -m "pre-patched state of $pkg"
for patch in ../../haskell-patches/${pkg}_*; do
echo trying $patch
if ! patch -p1 < $patch; then
echo "failed to apply $patch"
echo "please resolve this, replace the patch with a new version, and exit the subshell to continue"
$SHELL
fi
done
cabalinstall "$@"
rm -rf $pkg*
cd ..
}
installgitannexdeps () {
pushd ../..
echo cabal install --only-dependencies
cabal install --only-dependencies "$@"
popd
}
install_pkgs () {
rm -rf tmp
mkdir tmp
cd tmp
patched network
patched unix-time
patched lifted-base
patched zlib
patched process
patched MissingH
patched bloomfilter
patched SafeSemaphore
patched comonad
patched HTTP
patched MonadCatchIO-transformers
patched distributive
patched iproute
patched primitive
patched socks
patched entropy
patched vector
patched persistent
patched profunctors
patched skein
patched lens
patched persistent-template
patched file-embed
patched wai-app-static
patched shakespeare
patched hamlet
patched shakespeare-css
patched shakespeare-js
patched yesod-routes
patched yesod-core
patched yesod-persistent
patched yesod-form
patched yesod-auth
patched yesod
patched async
patched gnuidn
patched DAV
cd ..
installgitannexdeps -fAndroid -f-Pairing
}
echo
echo
echo native build
echo
cabal update
installgitannexdeps
echo
echo
echo cross build
echo
PATH=$HOME/.ghc/android-14/arm-linux-androideabi-4.7/bin:$HOME/.ghc/android-14/arm-linux-androideabi-4.7/arm-linux-androideabi/bin:$PATH
cabal update
install_pkgs
|