blob: 4c597b8f051feb861badc5d16583c1fef6f6a4d0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | class N < Formula
  homepage "https://github.com/tj/n"
  head "https://github.com/tj/n.git"
  url "https://github.com/tj/n/archive/v1.3.0.tar.gz"
  sha1 "3c3248456bd6255401305d2cdf24898d78c28e25"
  def install
    bin.mkdir
    system "make", "PREFIX=#{prefix}", "install"
  end
  test do
    system bin/"n", "ls"
  end
end
 |