diff options
Diffstat (limited to 'Library/Formula/ncmpcpp.rb')
| -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 |
