diff options
| author | David Höppner | 2010-01-31 15:27:29 +0100 |
|---|---|---|
| committer | David Höppner | 2010-01-31 15:27:29 +0100 |
| commit | ae4169a79af0f0eb0311407aa4fe8e08a71755fd (patch) | |
| tree | 3d4fe611261f42d8218aabf65c46f782c9fd69ed /Library/Formula | |
| parent | a42760dc5832e996e721227d31851acd2752db3f (diff) | |
| download | homebrew-ae4169a79af0f0eb0311407aa4fe8e08a71755fd.tar.bz2 | |
New formula libmpdclient
A stable, documented, asynchronous API library for interfacing with MPD.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libmpdclient.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libmpdclient.rb b/Library/Formula/libmpdclient.rb new file mode 100644 index 000000000..8e39df9f0 --- /dev/null +++ b/Library/Formula/libmpdclient.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Libmpdclient <Formula + url 'http://downloads.sourceforge.net/project/musicpd/libmpdclient/2.1/libmpdclient-2.1.tar.bz2' + homepage 'http://mpd.wikia.com/wiki/ClientLib:libmpdclient' + md5 '67efa0c3d107c090ef277dfb3442d1e3' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
