diff options
| author | Mike Danko | 2010-04-07 16:10:09 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-07 13:17:33 -0700 |
| commit | 205c6df2e3376d822a20dc7be339ad6e85a8a343 (patch) | |
| tree | 6d53d917d91438a3a4999cb16bb8c730fe9fe983 /Library/Formula | |
| parent | 10d2bbf52ffc6c669909fdd74e26e7fb26b373b9 (diff) | |
| download | homebrew-205c6df2e3376d822a20dc7be339ad6e85a8a343.tar.bz2 | |
new formula: libsmi
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libsmi.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libsmi.rb b/Library/Formula/libsmi.rb new file mode 100644 index 000000000..bacc232d1 --- /dev/null +++ b/Library/Formula/libsmi.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Libsmi <Formula + url 'ftp://ftp.ibr.cs.tu-bs.de/pub/local/libsmi/libsmi-0.4.8.tar.gz' + homepage 'http://www.ibr.cs.tu-bs.de/projects/libsmi/' + md5 '760b6b1070738158708649ed2c63425e' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
