2010-12-01 00:46:09 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ncmpcpp < Formula
|
2011-05-10 21:12:04 +00:00
|
|
|
url 'http://unkart.ovh.org/ncmpcpp/ncmpcpp-0.5.7.tar.bz2'
|
2010-12-01 00:46:09 +00:00
|
|
|
homepage 'http://unkart.ovh.org/ncmpcpp/'
|
2011-05-10 21:12:04 +00:00
|
|
|
md5 '6632c76f2f0836c5aa5a1a2fbb1c921c'
|
2010-12-01 00:46:09 +00:00
|
|
|
|
|
|
|
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
|