15 git -C sandbox/neomutt pull |
15 git -C sandbox/neomutt pull |
16 fi |
16 fi |
17 |
17 |
18 cd sandbox/neomutt |
18 cd sandbox/neomutt |
19 |
19 |
20 PLATFORM="$(uname -s)" |
20 case "$(uname -s)" in |
21 CONFIGURE_OPTIONS='' |
|
22 HCACHE="tokyocabinet" |
|
23 |
|
24 case "$PLATFORM" in |
|
25 Darwin) |
21 Darwin) |
26 # Use macports' headers |
|
27 CONFIGURE_OPTIONS='--with-ssl=/opt/local --with-gpgme=/opt/local' |
22 CONFIGURE_OPTIONS='--with-ssl=/opt/local --with-gpgme=/opt/local' |
|
23 ;; |
|
24 *) |
|
25 CONFIGURE_OPTIONS='' |
28 ;; |
26 ;; |
29 esac |
27 esac |
30 |
28 |
31 autoreconf -i --force || true |
29 autoreconf -i --force || true |
32 |
30 |