blob: e9437a992011930dd6dabb46ca2a119b0fd46ecf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Hilite < Formula
homepage 'http://sourceforge.net/projects/hilite/'
url 'http://downloads.sourceforge.net/project/hilite/hilite/1.5/hilite.c'
sha1 '96d551f1aae966d901e12076b59efd3e350e4192'
def install
system "#{ENV.cc} #{ENV.cflags} hilite.c -o hilite"
bin.install 'hilite'
end
def test
system "#{bin}/hilite", "bash", "-c", "echo 'stderr in red' >&2"
end
end
|