blob: 8417f33926dafdfa2183fcf4b04c0cad1fef0c6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
java -jar "#{libexec}/cssembed-0.4.5.jar" "$@"
EOS
end
end
|