| 
									
										
										
										
											2010-03-02 22:54:12 -08:00
										 |  |  | require 'formula' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TestBall <Formula | 
					
						
							|  |  |  |   # name parameter required for some Formula::factory | 
					
						
							|  |  |  |   def initialize name=nil | 
					
						
							| 
									
										
										
										
											2010-06-10 13:09:30 -07:00
										 |  |  |     @url="file:///#{TEST_FOLDER}/tarballs/testball-0.1.tbz" | 
					
						
							| 
									
										
										
										
											2010-03-02 22:54:12 -08:00
										 |  |  |     @homepage = 'http://example.com/' | 
					
						
							|  |  |  |     super "testball" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |   def install | 
					
						
							|  |  |  |     prefix.install "bin" | 
					
						
							|  |  |  |     prefix.install "libexec" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							| 
									
										
										
										
											2010-04-03 08:44:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ConfigureFails <Formula | 
					
						
							|  |  |  |   # name parameter required for some Formula::factory | 
					
						
							|  |  |  |   def initialize name=nil | 
					
						
							| 
									
										
										
										
											2010-06-10 13:09:30 -07:00
										 |  |  |     @url="file:///#{TEST_FOLDER}/tarballs/configure_fails.tar.gz" | 
					
						
							| 
									
										
										
										
											2010-04-03 08:44:41 -07:00
										 |  |  |     @homepage = 'http://example.com/' | 
					
						
							|  |  |  |     @version = '1.0.0' | 
					
						
							|  |  |  |     @md5 = '9385e1b68ab8af68ac2c35423443159b' | 
					
						
							|  |  |  |     super "configurefails" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def install | 
					
						
							|  |  |  |     system "./configure" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |