60b706206e
Additionally, this removes an unncessary 'prefix.mkpath' Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
363 B
Ruby
12 lines
363 B
Ruby
require 'formula'
|
|
|
|
class Sparse < Formula
|
|
url 'http://www.kernel.org/pub/software/devel/sparse/dist/sparse-0.4.3.tar.bz2'
|
|
homepage 'https://sparse.wiki.kernel.org/index.php/Main_Page'
|
|
md5 'a5c0b07bd00ad5ea292f804d7af1adbc'
|
|
head 'git://git.kernel.org/pub/scm/devel/sparse/sparse.git'
|
|
|
|
def install
|
|
system "make", "HOME=#{prefix}", "install"
|
|
end
|
|
end
|