use gzip multi-arg support
This commit is contained in:
parent
d6c5445ff1
commit
ee3b332769
3 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@ class Cvs2svn <Formula
|
||||||
|
|
||||||
system "python", "setup.py", "install", "--prefix=#{prefix}"
|
system "python", "setup.py", "install", "--prefix=#{prefix}"
|
||||||
system "make man"
|
system "make man"
|
||||||
man1.install [gzip('cvs2svn.1'), gzip('cvs2git.1'), gzip('cvs2bzr.1')]
|
man1.install gzip('cvs2svn.1', 'cvs2git.1', 'cvs2bzr.1')
|
||||||
prefix.install %w[ BUGS CHANGES COMMITTERS HACKING
|
prefix.install %w[ BUGS CHANGES COMMITTERS HACKING
|
||||||
cvs2bzr-example.options cvs2git-example.options cvs2hg-example.options
|
cvs2bzr-example.options cvs2git-example.options cvs2hg-example.options
|
||||||
cvs2svn-example.options contrib ]
|
cvs2svn-example.options contrib ]
|
||||||
|
|
|
@ -8,7 +8,7 @@ class Mr <Formula
|
||||||
def install
|
def install
|
||||||
system "make"
|
system "make"
|
||||||
bin.install ['mr', 'webcheckout']
|
bin.install ['mr', 'webcheckout']
|
||||||
man1.install [gzip('mr.1'), gzip('webcheckout.1')]
|
man1.install gzip('mr.1', 'webcheckout.1')
|
||||||
(share+'mr').install Dir['lib/*']
|
(share+'mr').install Dir['lib/*']
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,7 +7,7 @@ class Scons <Formula
|
||||||
version '2.0.1'
|
version '2.0.1'
|
||||||
|
|
||||||
def install
|
def install
|
||||||
man1.install [gzip('scons-time.1'), gzip('scons.1'), gzip('sconsign.1')]
|
man1.install gzip('scons-time.1', 'scons.1', 'sconsign.1')
|
||||||
system "python", "setup.py", "install",
|
system "python", "setup.py", "install",
|
||||||
"--prefix=#{prefix}",
|
"--prefix=#{prefix}",
|
||||||
"--standalone-lib",
|
"--standalone-lib",
|
||||||
|
|
Loading…
Reference in a new issue