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

class OxygenIcons <Formula
  url 'ftp://ftp.kde.org/pub/kde/stable/4.4.2/src/oxygen-icons-4.4.2.tar.bz2'
  homepage 'http://www.oxygen-icons.org/'
  md5 '86e655d909f743cea6a2fc6dd90f0e52'

  depends_on 'cmake' => :build

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