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

class Automoc4 <Formula
  @url='http://ftp-stud.fht-esslingen.de/Mirrors/ftp.kde.org/pub/kde/stable/automoc4/0.9.88/automoc4-0.9.88.tar.bz2'
  @homepage='http://techbase.kde.org/Development/Tools/Automoc4'
  @md5='91bf517cb940109180ecd07bc90c69ec'

  depends_on 'cmake'

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end