aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/n.rb
blob: 478e88e3bfabbb2c36c0bcf62862863212615186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class N < Formula
  homepage "https://github.com/visionmedia/n"
  head "https://github.com/visionmedia/n.git"
  url "https://github.com/visionmedia/n/archive/v1.2.7.tar.gz"
  sha1 "1852167d79d42b5077f23197133ec717ca1b78a0"

  def install
    bin.mkdir
    system "make", "PREFIX=#{prefix}", "install"
  end

  test do
    system bin/"n", "ls"
  end
end