homebrew-core/Formula/cssembed.rb

16 lines
447 B
Ruby
Raw Normal View History

require 'formula'
class Cssembed < Formula
url 'https://github.com/downloads/nzakas/cssembed/cssembed-0.4.5.jar'
homepage 'http://www.nczonline.net/blog/2009/11/03/automatic-data-uri-embedding-in-css-files/'
sha1 'c170f4a6a19f2f86ebd04208cc71d017b3a6f907'
def install
libexec.install "cssembed-0.4.5.jar"
(bin+'cssembed').write <<-EOS.undent
#!/bin/sh
2012-02-11 20:00:58 +00:00
java -jar "#{libexec}/cssembed-0.4.5.jar" "$@"
EOS
end
end