amtterm: basic test added
Closes Homebrew/homebrew#35564. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
34632c62df
commit
4280cc14a2
1 changed files with 10 additions and 7 deletions
|
@ -1,10 +1,9 @@
|
|||
require 'formula'
|
||||
|
||||
class Amtterm < Formula
|
||||
head 'git://git.kraxel.org/amtterm'
|
||||
homepage 'http://www.kraxel.org/blog/linux/amtterm/'
|
||||
url 'http://www.kraxel.org/releases/amtterm/amtterm-1.3.tar.gz'
|
||||
sha1 'cfd199cc870f48a59caa89408b039239eab85322'
|
||||
homepage "http://www.kraxel.org/blog/linux/amtterm/"
|
||||
url "http://www.kraxel.org/releases/amtterm/amtterm-1.3.tar.gz"
|
||||
sha1 "cfd199cc870f48a59caa89408b039239eab85322"
|
||||
|
||||
head "git://git.kraxel.org/amtterm"
|
||||
|
||||
resource "SOAP::Lite" do
|
||||
url "http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/SOAP-Lite-1.11.tar.gz"
|
||||
|
@ -21,7 +20,11 @@ class Amtterm < Formula
|
|||
system "make", "install"
|
||||
end
|
||||
|
||||
system "make","prefix=#{prefix}", "install"
|
||||
system "make", "prefix=#{prefix}", "install"
|
||||
bin.env_script_all_files(libexec+"bin", :PERL5LIB => ENV["PERL5LIB"])
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/amtterm", "-h"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue