Skip to content

Instantly share code, notes, and snippets.

@sterpe
Last active July 7, 2016 04:29
Show Gist options
  • Save sterpe/48b4f63ea203fd76c595 to your computer and use it in GitHub Desktop.
Save sterpe/48b4f63ea203fd76c595 to your computer and use it in GitHub Desktop.
compile irssi from source OS X 10.11 El Capitan
# WARNING - this is quite old....updated instructions in comments below.
#!/bin/sh -ex
# See http://fink.cvs.sourceforge.net/fink/dists/10.9-libcxx/stable/main/finkinfo/net/irssi-10.10.info?view=markup
export ARCHFLAGS=""
./configure \
--prefix=/usr/local \
--disable-dependency-tracking \
--with-modules \
--with-ncurses=/usr/local \
--with-proxy \
--enable-ipv6 \
--mandir=/usr/local/share/man \
--with-socks \
--enable-ssl \
PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
make ARCHFLAGS=""
@sterpe
Copy link
Author

sterpe commented Jul 7, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment