33 lines
1.5 KiB
Ruby
33 lines
1.5 KiB
Ruby
class Uni2ascii < Formula
|
|
desc "Bi-directional conversion between UTF-8 and various ASCII flavors"
|
|
# homepage/url: "the website you are looking for is suspended"
|
|
# Switched to Debian mirrors June 2015.
|
|
homepage "https://billposer.org/Software/uni2ascii.html"
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/u/uni2ascii/uni2ascii_4.18.orig.tar.gz"
|
|
mirror "https://mirrors.kernel.org/debian/pool/main/u/uni2ascii/uni2ascii_4.18.orig.tar.gz"
|
|
sha256 "9e24bb6eb2ced0a2945e2dabed5e20c419229a8bf9281c3127fa5993bfa5930e"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "e95934b7cfcfc96467f1d9d36ec91e04e53fa0edd71f9c0b8aff6e357128de5a" => :high_sierra
|
|
sha256 "298ca15b89643dfa4946d485105fed7baa6934556c63d2bf97a3b7af0984c325" => :sierra
|
|
sha256 "3cc5e96fa9c49edb0b06d60af238f4a4803feefe22bbf5924698649e8c4db5fb" => :el_capitan
|
|
sha256 "0200efd85e37c8c6e2582f82ff8fbb050bba07d31a1bf3720837f5d30da6a54b" => :yosemite
|
|
sha256 "b58b9d744048c9e2cc81e75d46c94926d14b2c25a613a05cd0835882221ade7c" => :mavericks
|
|
sha256 "fe16b41d049b9dada88474ace55d1155b70afe7b679d323772743a86ec24cb64" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
ENV["MKDIRPROG"]="mkdir -p"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
# uni2ascii
|
|
assert_equal "0x00E9", pipe_output("#{bin}/uni2ascii -q", "é")
|
|
|
|
# ascii2uni
|
|
assert_equal "e\n", pipe_output("#{bin}/ascii2uni -q", "0x65")
|
|
end
|
|
end
|