11 lines
379 B
Ruby
11 lines
379 B
Ruby
class GnomeCommon < Formula
|
|
desc "Core files for GNOME"
|
|
homepage "https://git.gnome.org/browse/gnome-common/"
|
|
url "https://download.gnome.org/sources/gnome-common/3.14/gnome-common-3.14.0.tar.xz"
|
|
sha256 "4c00242f781bb441289f49dd80ed1d895d84de0c94bfc2c6818a104c9e39262c"
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|