blob: 4c29186884f8f3307feac1fc6959989e9f55538a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Unyaffs <Formula
head 'http://unyaffs.googlecode.com/svn/trunk/'
homepage 'http://code.google.com/p/unyaffs/'
def install
cc_args = ENV['CFLAGS'].split(' ')
(cc_args << ['-o', 'unyaffs', 'unyaffs.c']).flatten!
system ENV.cc, *cc_args
bin.install 'unyaffs'
end
end
|