blob: 1fd517eb1bfd7ad15832819d808cc80974ec53f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Mpio < Formula
url 'https://github.com/downloads/frsyuki/mpio/mpio-0.3.7.tar.gz'
homepage 'https://github.com/frsyuki/mpio'
md5 '9ef727a197bc97621709f79d9539ed19'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|