GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: A YAML processor for use with Nu and Objective-C. Created by Patrick Thomson.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nuyaml.git
Added an installation task to the framework.
patrickt (author)
Tue Mar 11 11:08:18 -0700 2008
commit  15f3785852c72b4a399db233741c3f84558d73b3
tree    101d1f6874047e44bf8592a097828df1e7cff2ca
parent  b60cd0b90bfd8811edb798958f967e3c37344660
...
1
2
3
 
 
 
4
5
6
7
 
 
 
 
 
 
8
9
10
...
1
2
 
3
4
5
6
7
8
 
9
10
11
12
13
14
15
16
17
0
@@ -1,10 +1,17 @@
0
 (task "build" is
0
       (SH "cd libsyck; nuke")
0
- (SH "cd yaml; nuke"))
0
+ (SH "cd yaml; nuke")
0
+ (SH "rm -rf ./YAML.framework")
0
+ (SH "mv ./yaml/YAML.framework ./"))
0
 
0
 (task "clobber" is
0
       (SH "cd libsyck; nuke clobber")
0
- (SH "cd yaml; nuke clobber"))
0
+ (SH "cd yaml; nuke clobber")
0
+ (SH "rm -rf ./YAML.framework"))
0
+
0
+(task "install" => "build" is
0
+ (SH "sudo rm -rf /Library/Frameworks/YAML.framework")
0
+ (SH "ditto YAML.framework /Library/Frameworks/YAML.framework"))
0
 
0
 (task "test" => "build" is
0
       (SH "nutest test/test_yaml.nu"))
...
16
17
18
19
20
 
 
...
16
17
18
 
19
20
21
0
@@ -16,4 +16,5 @@
0
 (task "default" => "application" is
0
      ;; Making sure to copy the framework into the application's frameworks directory.
0
      (make-directory "./SizeMatters.app/Contents/Frameworks/YAML.framework")
0
- (SH "cp -rf ../../yaml/YAML.framework/ ./SizeMatters.app/Contents/Frameworks/YAML.framework/"))
0
\ No newline at end of file
0
+ (SH "cp -rf ../../YAML.framework/ ./SizeMatters.app/Contents/Frameworks/YAML.framework/"))
0
+

Comments

    No one has commented yet.