aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/oxygen-icons.rb
blob: d88aab2382f2a7e0304d1b63365da06edd1fe9cc (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.6.0/src/oxygen-icons-4.6.0.tar.bz2'
  homepage 'http://www.oxygen-icons.org/'
  md5 '47b943e1b8bc2c1cef10fd791ac70091'

  depends_on 'cmake' => :build

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