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

class Libpuzzle < Formula
  homepage 'http://libpuzzle.pureftpd.org/project/libpuzzle'
  url 'http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/libpuzzle-0.11.tar.bz2'
  sha1 'a3352c67fd61eab33d5a03c214805b18723d719e'

  depends_on 'gd'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end