summaryrefslogtreecommitdiff
path: root/bindings/objc/build_sword/build_ub_mac_swordutils.sh
diff options
context:
space:
mode:
authorTeus Benschop <teusjannette@gmail.com>2018-10-28 11:51:26 +0100
committerTeus Benschop <teusjannette@gmail.com>2018-10-28 11:51:26 +0100
commit1d0ff54794b5edea7cdf1d2d66710a0fa885bcc5 (patch)
tree8ece5f9ef437fbb151f2b22ed0c6e1a714879c7c /bindings/objc/build_sword/build_ub_mac_swordutils.sh
parentc7dbdc9161a7c460526b80fe01af49d714856126 (diff)
New upstream version 1.8.1
Diffstat (limited to 'bindings/objc/build_sword/build_ub_mac_swordutils.sh')
-rwxr-xr-xbindings/objc/build_sword/build_ub_mac_swordutils.sh59
1 files changed, 0 insertions, 59 deletions
diff --git a/bindings/objc/build_sword/build_ub_mac_swordutils.sh b/bindings/objc/build_sword/build_ub_mac_swordutils.sh
deleted file mode 100755
index 55c21f7..0000000
--- a/bindings/objc/build_sword/build_ub_mac_swordutils.sh
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/sh -e
-# script by Manfred Bergmann in 2006
-#
-
-# dependencies for this script are:
-# that "build_mac_sword.sh" has been executed in "fat" mode and
-# successfully created a "build_tools" folder with directories: "ppc_inst" and "intel_inst"
-
-# first build library
-./build_mac_sword.sh -a fat -b build_tools
-
-BDIR=.
-SWORDBUILD=$BDIR/build_tools
-PPCPREFIX=$SWORDBUILD/ppc_inst
-INTELPREFIX=$SWORDBUILD/intel_inst
-RESULTPREFIX=$SWORDBUILD/result_inst
-
-# Create install dirs if they doesn't exist
-if [ ! -d $SWORDBUILD ]; then
- echo "build folder doesn't exist!\n"
- exit 1
-fi
-if [ ! -d $PPCPREFIX ]; then
- echo "ppc installation folder doesn't exist!\n"
- exit 1
-fi
-if [ ! -d $INTELPREFIX ]; then
- echo "intel installation folder doesn't exist!\n"
- exit 1
-fi
-if [ ! -d $RESULTPREFIX ]; then
- echo "result(fat) installation folder doesn't exist!\n"
- exit 1
-fi
-
-BINDESTINATION=$RESULTPREFIX/bin
-if [ -d $BINDESTINATION ]; then
- rm -r $BINDESTINATION
-fi
-mkdir $BINDESTINATION
-
-function callLipo {
- lipo -create $INTELPREFIX/bin/$1 $PPCPREFIX/bin/$1 -output $BINDESTINATION/$1
-}
-
-callLipo imp2gbs
-callLipo imp2ld
-callLipo imp2vs
-callLipo installmgr
-callLipo mod2imp
-callLipo mod2osis
-callLipo mod2vpl
-callLipo mod2zmod
-callLipo osis2mod
-callLipo tei2mod
-callLipo vpl2mod
-callLipo vs2osisref
-callLipo vs2osisreftxt
-callLipo xml2gbs