2013-02-03 03:27:14 +00:00
|
|
|
class Clamz < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Download MP3 files from Amazon's music store"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://code.google.com/p/clamz/"
|
|
|
|
url "https://clamz.googlecode.com/files/clamz-0.5.tar.gz"
|
|
|
|
sha256 "5a63f23f15dfa6c2af00ff9531ae9bfcca0facfe5b1aa82790964f050a09832b"
|
2014-03-06 15:28:03 +00:00
|
|
|
revision 1
|
2013-02-03 03:27:14 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "libgcrypt"
|
2013-02-03 03:27:14 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2013-02-03 03:27:14 +00:00
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2013-02-03 03:27:14 +00:00
|
|
|
system "#{bin}/clamz"
|
|
|
|
end
|
|
|
|
end
|