Skip to content

Instantly share code, notes, and snippets.

@joefiorini
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joefiorini/edc4c8b038a13880f288 to your computer and use it in GitHub Desktop.
Save joefiorini/edc4c8b038a13880f288 to your computer and use it in GitHub Desktop.
require 'formula'
class LibxdgBasedir < Formula
url 'https://github.com/devnev/libxdg-basedir/archive/libxdg-basedir-1.2.0.tar.gz'
homepage 'http://n.ethz.ch/~nevillm/download/libxdg-basedir/'
md5 'bd3bb815c9e27fda9c721b9c0b29ddda'
def install
ENV['PATH'] = "/usr/local/bin:#{ENV['PATH']}"
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment