diff options
| author | Dominyk Tiller | 2015-02-14 22:11:06 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2015-02-15 19:11:38 +0000 |
| commit | cb199122eb93177b1924d4ead66a127180a387d5 (patch) | |
| tree | f8e44cf0819fa06c95e9b8e5530ef1248cce39af /Library/Formula | |
| parent | 8a3b1b02b94c669690bfd09d77cdd2d00fe00a76 (diff) | |
| download | homebrew-cb199122eb93177b1924d4ead66a127180a387d5.tar.bz2 | |
cdk 5.0.20141106
Bump.
Closes #36822.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/cdk.rb | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Library/Formula/cdk.rb b/Library/Formula/cdk.rb index 9a0b5ba58..0c4a903d9 100644 --- a/Library/Formula/cdk.rb +++ b/Library/Formula/cdk.rb @@ -1,13 +1,15 @@ -require 'formula' - class Cdk < Formula - homepage 'http://invisible-island.net/cdk/' - url 'ftp://invisible-island.net/cdk/cdk-5.0-20140118.tgz' - version '5.0.20140118' - sha1 'd900e9e0d54a90701541d40ff7137507baf3b382' + homepage "http://invisible-island.net/cdk/" + url "ftp://invisible-island.net/cdk/cdk-5.0-20141106.tgz" + version "5.0.20141106" + sha1 "81d1804412dbcdc399a91e08e024e30890c1a291" def install - system "./configure", "--prefix=#{prefix}" + system "./configure", "--prefix=#{prefix}", "--with-ncurses" system "make", "install" end + + test do + assert_match "#{lib}", shell_output("#{bin}/cdk5-config --libdir") + end end |
