13 lines
246 B
Ruby
13 lines
246 B
Ruby
require 'formula'
|
|
|
|
class Jsawk < Formula
|
|
head 'https://github.com/micha/jsawk.git'
|
|
homepage 'https://github.com/micha/jsawk'
|
|
|
|
depends_on 'spidermonkey'
|
|
|
|
def install
|
|
system "mv README.markdown README"
|
|
bin.install "jsawk"
|
|
end
|
|
end
|