aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xscripts/build-mailcore2-framework-ios.sh17
-rwxr-xr-xscripts/build-mailcore2-framework-osx.sh17
-rwxr-xr-xscripts/build-mailcore2-ios.sh18
-rwxr-xr-xscripts/build-mailcore2-osx.sh18
-rw-r--r--scripts/deps-versions.plistbin161 -> 227 bytes
5 files changed, 70 insertions, 0 deletions
diff --git a/scripts/build-mailcore2-framework-ios.sh b/scripts/build-mailcore2-framework-ios.sh
new file mode 100755
index 00000000..1009d03e
--- /dev/null
+++ b/scripts/build-mailcore2-framework-ios.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+pushd "`dirname $0`" > /dev/null
+scriptpath="`pwd`"
+popd > /dev/null
+
+. "$scriptpath/include.sh/build-dep.sh"
+
+url="https://github.com/mailcore/mailcore2.git"
+rev=da097788fc9d80ed0473dd634b26b3ae281e5618
+name="mailcore2-framework-ios"
+xcode_target="mailcore ios"
+xcode_project="mailcore2.xcodeproj"
+library="MailCore.framework"
+embedded_deps="ctemplate-ios libetpan-ios tidy-html5-ios uchardet-ios"
+
+build_git_ios
diff --git a/scripts/build-mailcore2-framework-osx.sh b/scripts/build-mailcore2-framework-osx.sh
new file mode 100755
index 00000000..e11281b2
--- /dev/null
+++ b/scripts/build-mailcore2-framework-osx.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+pushd "`dirname $0`" > /dev/null
+scriptpath="`pwd`"
+popd > /dev/null
+
+. "$scriptpath/include.sh/build-dep.sh"
+
+url="https://github.com/mailcore/mailcore2.git"
+rev=da097788fc9d80ed0473dd634b26b3ae281e5618
+name="mailcore2-framework-osx"
+xcode_target="mailcore osx"
+xcode_project="mailcore2.xcodeproj"
+library="MailCore.framework"
+embedded_deps="ctemplate-osx libetpan-osx uchardet-osx"
+
+build_git_osx
diff --git a/scripts/build-mailcore2-ios.sh b/scripts/build-mailcore2-ios.sh
new file mode 100755
index 00000000..f8f741ef
--- /dev/null
+++ b/scripts/build-mailcore2-ios.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+pushd "`dirname $0`" > /dev/null
+scriptpath="`pwd`"
+popd > /dev/null
+
+. "$scriptpath/include.sh/build-dep.sh"
+
+url="https://github.com/mailcore/mailcore2.git"
+rev=da097788fc9d80ed0473dd634b26b3ae281e5618
+name="mailcore2-ios"
+xcode_target="static mailcore2 ios"
+xcode_project="mailcore2.xcodeproj"
+library="libMailCore-ios.a"
+embedded_deps="ctemplate-ios libetpan-ios tidy-html5-ios uchardet-ios"
+flatten_deps=1
+
+build_git_ios
diff --git a/scripts/build-mailcore2-osx.sh b/scripts/build-mailcore2-osx.sh
new file mode 100755
index 00000000..75cb0f52
--- /dev/null
+++ b/scripts/build-mailcore2-osx.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+pushd "`dirname $0`" > /dev/null
+scriptpath="`pwd`"
+popd > /dev/null
+
+. "$scriptpath/include.sh/build-dep.sh"
+
+url="https://github.com/mailcore/mailcore2.git"
+rev=da097788fc9d80ed0473dd634b26b3ae281e5618
+name="mailcore2-osx"
+xcode_target="static mailcore2 osx"
+xcode_project="mailcore2.xcodeproj"
+library="libMailCore.a"
+embedded_deps="ctemplate-osx libetpan-osx uchardet-osx"
+flatten_deps=1
+
+build_git_osx
diff --git a/scripts/deps-versions.plist b/scripts/deps-versions.plist
index 6ccdffa5..d53a4628 100644
--- a/scripts/deps-versions.plist
+++ b/scripts/deps-versions.plist
Binary files differ