# # filename: README.BREW # # 1. download provided ".rb" file # 2. rename to "xmedcon.rb" (i.e. remove the version info from the filename) # 3. install with "brew install --build-from-source xmedcon.rb" # This Homebrew formula for (X)MedCon was offered by Till-Karsten Hauser -------------------------------------------------------------------------------- From: Hauser, Till-Karsten Date: 14-Dec-2017 Subject: Homebrew formula Hi Erik, Thank you for providing xmedcon! Can I suggest you to add a home-brew formula for xmedcon such as require 'formula' class Xmedcon < Formula homepage 'http://xmedcon.sourceforge.net' url 'http://downloads.sourceforge.net/project/xmedcon/XMedCon-Source/0.14.1/xmedcon-0.14.1.tar.bz2' version '0.14.1' sha256 'a6d194bf44d3d6c96cd8d6e1ad586b5d5e20de1c09dbbb51c76f9e5fd4ae6949' depends_on 'glib' depends_on 'gtk+' depends_on 'gdk-pixbuf' depends_on 'pkg-config' depends_on 'libpng' depends_on 'autoconf' => :build depends_on 'automake' => :build depends_on 'libtool' => :build def install system "autoreconf", "--force", "--install" system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" system "make", "install" end end This worked perfectly for me and will maybe make life easier for all others using MAcOS Kind regards, Till --------------------------------------------------------------------------------