aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/flake.rb
blob: e4c38191f129157c3e997d18ec01bd2dd2adbd64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Flake < Formula
  homepage 'http://flake-enc.sourceforge.net'
  url "https://downloads.sourceforge.net/project/flake-enc/flake/0.11/flake-0.11.tar.bz2"
  sha1 '2dd2276c1f1ba36abb1c305185efeced06abca62'

  def install
    ENV.j1
    system "./configure", "--disable-debug", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end