public
Rubygem
Description: Ruby osx/plist extension for reading/writing property lists
Clone URL: git://github.com/kballard/osx-plist.git
Search Repo:
kballard (author)
Sat Feb 24 23:34:29 -0800 2007
commit  f19cf37e59fe2eb1c452ae05b0cb28984bf64eb8
tree    55d82e40d7e901075dded16bce44a121d3073ef0
parent  2bb3d3eb4abeda292d03e1e5ff6eb117c1b31fb8
osx-plist / extconf.rb
100755 8 lines (7 sloc) 0.272 kb
1
2
3
4
5
6
7
8
#!/usr/bin/ruby
require 'mkmf'
newFlags = " -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk"
$CFLAGS += newFlags
$LDFLAGS += ' -framework CoreFoundation' + newFlags + ' -undefined suppress -flat_namespace'
$LIBRUBYARG_SHARED=""
create_makefile("osx/plist")