homebrew-core/Formula/n.rb
Jianwei Han 508a497a41 n 1.3.0
Closes Homebrew/homebrew#38353.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-04-04 17:05:09 +08:00

15 lines
326 B
Ruby

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