d87063d32f
These dependencies are automatically detected from the URL, so declaring them is redundant. If these formulae ever get a head or devel spec, then explicit xz deps would need to be re-scoped appropriately. Thus we should remove them.
13 lines
381 B
Ruby
13 lines
381 B
Ruby
require 'formula'
|
|
|
|
class Gcal < Formula
|
|
homepage 'http://www.gnu.org/software/gcal/'
|
|
url 'http://ftpmirror.gnu.org/gcal/gcal-3.6.3.tar.xz'
|
|
mirror 'http://ftp.gnu.org/gnu/gcal/gcal-3.6.3.tar.xz'
|
|
sha1 'a5d68216d8b0735c9b095fb81a08d6dbf5cdeedd'
|
|
|
|
def install
|
|
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
|
|
system "make install"
|
|
end
|
|
end
|