blob: 17ed6b2f13bccf4e1a34d287bc4cc6e75b5f5479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
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
|