diff options
| author | Max Howell | 2009-05-21 17:40:27 +0100 |
|---|---|---|
| committer | Max Howell | 2009-05-21 17:40:27 +0100 |
| commit | ef7dd6363d988013d326b6b38bae8c686e8b3119 (patch) | |
| tree | 493041be3de77ffc59a69401d97f179f9ff6508f | |
| parent | 25f9cfc01fdb193ce25cad623d51bf59c19d8eec (diff) | |
| download | brew-ef7dd6363d988013d326b6b38bae8c686e8b3119.tar.bz2 | |
liblastfm-0.3 formula
| -rw-r--r-- | Formula/liblastfm.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Formula/liblastfm.rb b/Formula/liblastfm.rb new file mode 100644 index 000000000..fe0d67ba3 --- /dev/null +++ b/Formula/liblastfm.rb @@ -0,0 +1,14 @@ +$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks +require 'brewkit' + +homepage='http://github.com/mxcl/liblastfm/' +url='http://github.com/mxcl/liblastfm/tarball/0.3.0' +md5='b348917689b90f3f40125d0968f0b643' + +external_deps=['qmake'] + +Formula.new(url, md5).brew do |prefix| + system "./configure --release --prefix '#{prefix}'" + system "make" + system "make install" +end
\ No newline at end of file |
