class Unac < Formula desc "C library and command that removes accents from a string" homepage "https://savannah.nongnu.org/projects/unac" url "https://mirrors.ocf.berkeley.edu/debian/pool/main/u/unac/unac_1.8.0.orig.tar.gz" mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/u/unac/unac_1.8.0.orig.tar.gz" sha256 "29d316e5b74615d49237556929e95e0d68c4b77a0a0cfc346dc61cf0684b90bf" bottle do cellar :any sha256 "b97f2799eafd917f8fe1cc47c39634bc91a19ca452ce11ec8fd5edf37ea1dba3" => :sierra sha256 "6c9d63dde182a55e237e63cfa4ab625164ce275e343fd88003483227bd7439bc" => :el_capitan sha256 "0db9b14eae2c3db5d2d268deb4a3369557a13d35dd216f4ea50aa0776eb56fb3" => :yosemite sha256 "1fd7af2c4ef86426dc63f80a14076a37ebabced46a572caf1b0e9fe760ab64c1" => :mavericks end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "gettext" => :build # configure.ac doesn't properly detect Mac OS's iconv library. This patch fixes that. patch :DATA patch :p0 do url "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=patch-libunac1.txt;att=1;bug=623340" sha256 "59e98d779424c17f6549860672085ffbd4dda8961d49eda289aa6835710b91c8" end patch :p0 do url "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=patch-unaccent.c.txt;att=1;bug=623340" sha256 "a2fd06151214400ba007ecd2193b07bdfb81f84aa63323ef3e31a196e38afda7" end patch do url "https://mirrors.ocf.berkeley.edu/debian/pool/main/u/unac/unac_1.8.0-6.diff.gz" mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/u/unac/unac_1.8.0-6.diff.gz" sha256 "13a362f8d682670c71182ab5f0bbf3756295a99fae0d7deb9311e611a43b8111" end def install chmod 0755, "configure" touch "config.rpath" inreplace "autogen.sh", "libtool", "glibtool" system "./autogen.sh" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" # Separate steps to prevent race condition in folder creation system "make" ENV.j1 system "make", "install" end test do assert_equal "foo", shell_output("#{bin}/unaccent utf-8 fóó").strip end end __END__ diff --git a/configure.ac b/configure.ac index 4a4eab6..9f25d50 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,7 @@ AM_MAINTAINER_MODE AM_ICONV +LIBS="$LIBS -liconv" AC_CHECK_FUNCS(iconv_open,,AC_MSG_ERROR([ iconv_open not found try to install replacement from http://www.gnu.org/software/libiconv/