summaryrefslogtreecommitdiff
path: root/data/darwintools/make.sh
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-02-14 11:04:20 +0000
committerJay Freeman <saurik@saurik.com>2008-02-14 11:04:20 +0000
commit62882fc0471895bc1a47c13e22daf35dcaafecd0 (patch)
treec5fb76fc3f64e729fdabeb9c35774e722000fd4e /data/darwintools/make.sh
parent8e60af7ad00762fb8a89ae39c771287f3c5efed4 (diff)
Got PyObjC working.
git-svn-id: http://svn.telesphoreo.org/trunk@74 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/darwintools/make.sh')
-rw-r--r--data/darwintools/make.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/data/darwintools/make.sh b/data/darwintools/make.sh
new file mode 100644
index 000000000..cf0191d94
--- /dev/null
+++ b/data/darwintools/make.sh
@@ -0,0 +1,8 @@
+pkg:extract
+cd *
+pkg: mkdir -p /usr/bin
+
+for tool in startupfiletool sw_vers; do
+ arm-apple-darwin-gcc -o "${tool}" "${tool}.c" -framework CoreFoundation
+ pkg: cp -a "${tool}" /usr/bin
+done