homebrew-core/Formula/oxygen-icons.rb

15 lines
336 B
Ruby

require 'formula'
class OxygenIcons < Formula
homepage 'http://www.oxygen-icons.org/'
url 'ftp://ftp.kde.org/pub/kde/stable/4.6.0/src/oxygen-icons-4.6.0.tar.bz2'
md5 '47b943e1b8bc2c1cef10fd791ac70091'
depends_on 'cmake' => :build
def install
system "cmake #{std_cmake_parameters} ."
system "make install"
end
end