aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtermkey.rb
blob: fc857d9deec437d1f0f5070abb34ea995a4761c6 (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 => :build

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