New formula: ncmpcpp

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
kurayama 2010-12-01 00:46:09 +00:00 committed by Mike McQuaid
parent 649b07de10
commit 4363e2bbef
1 changed files with 17 additions and 0 deletions

17
Formula/ncmpcpp.rb Normal file
View File

@ -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