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

class Libtermkey < Formula
  homepage 'http://www.leonerd.org.uk/code/libtermkey/'
  url 'http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.16.tar.gz'
  sha1 'd89557f8ba37f4710cdb7e35d294a5965149eda4'

  depends_on :libtool

  def install
    system "make", "PREFIX=#{prefix}", "LIBTOOL=glibtool"
    system "make", "install", "PREFIX=#{prefix}", "LIBTOOL=glibtool"
  end
end