diff options
| author | kurayama | 2010-12-01 00:46:09 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-01 23:39:03 +0000 |
| commit | dd2901bd968811992a430e95ef53495e0b6c6ff7 (patch) | |
| tree | 11af7340a3b98266faf3811a72a9a3a9c9417e44 /Library/Formula | |
| parent | f948d91852b7dbf2c54759136473befcf2f23c32 (diff) | |
| download | homebrew-dd2901bd968811992a430e95ef53495e0b6c6ff7.tar.bz2 | |
New formula: ncmpcpp
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ncmpcpp.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/ncmpcpp.rb b/Library/Formula/ncmpcpp.rb new file mode 100644 index 000000000..332cb4823 --- /dev/null +++ b/Library/Formula/ncmpcpp.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Ncmpcpp <Formula + url 'http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.5.tar.bz2' + homepage 'http://unkart.ovh.org/ncmpcpp/' + md5 '30cded976c81bba4c8a2daf2215fe41d' + + depends_on 'taglib' + depends_on 'libmpdclient' + + def install + system "./configure", "--with-taglib", "--with-curl", "--enable-unicode", + "--disable-debug", "--disable-dependency-tracking", + "LDFLAGS=-liconv", "--prefix=#{prefix}" + system "make install" + end +end |
