diff options
| author | Louis-Philippe Gauthier | 2013-07-09 11:15:57 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-10 09:32:30 -0700 |
| commit | b82efee0967b15a89f431e9dc204c1715451d15c (patch) | |
| tree | 0a5132a0fd9cdf9c710f430990149063031d10c9 /Library | |
| parent | 5b76d459f7de2e7f9e48cad092c4d970c731d091 (diff) | |
| download | homebrew-b82efee0967b15a89f431e9dc204c1715451d15c.tar.bz2 | |
tinycdb 0.78
Closes #21098.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/tinycdb.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/tinycdb.rb b/Library/Formula/tinycdb.rb new file mode 100644 index 000000000..4b83bed9d --- /dev/null +++ b/Library/Formula/tinycdb.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Tinycdb < Formula + homepage 'http://www.corpit.ru/mjt/tinycdb.html' + url 'http://www.corpit.ru/mjt/tinycdb/tinycdb-0.78.tar.gz' + sha1 'ade42ee1e7c56f66a63cb933206c089b9983adba' + + def install + system "make" + system "make", "install", "prefix=#{prefix}", "mandir=#{man}" + end +end |
