diff options
| author | Marcel Beltz | 2011-09-30 14:23:04 +0200 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-30 10:39:26 -0700 |
| commit | c0e80b5d8c0eea8abdd007c2bb7b482e245c7697 (patch) | |
| tree | fa821bb69dd9f11176caf325ca41c37365a95186 /Library | |
| parent | 54191f1a0abe0f0817d04febd9690f6eecff4c6f (diff) | |
| download | homebrew-c0e80b5d8c0eea8abdd007c2bb7b482e245c7697.tar.bz2 | |
picocom: Update to 1.6
Closes #7910.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/picocom.rb | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/Library/Formula/picocom.rb b/Library/Formula/picocom.rb index aa583626b..75b96b1cd 100644 --- a/Library/Formula/picocom.rb +++ b/Library/Formula/picocom.rb @@ -1,12 +1,34 @@ require 'formula' class Picocom < Formula - url 'http://picocom.googlecode.com/files/picocom-1.4.tar.gz' + url 'http://picocom.googlecode.com/files/picocom-1.6.tar.gz' homepage 'http://code.google.com/p/picocom/' - md5 '08fcc5f6bb9e7676a2569386d5ea9f70' + md5 '426c3d30b82cbc80b0dafdccd6020c6c' + + def patches + # HIGH_BAUD is not defined + DATA + end + def install system "make" bin.install "picocom" end end + +__END__ +diff --git a/Makefile b/Makefile +index 09846aa..fba128e 100644 +--- a/Makefile ++++ b/Makefile +@@ -2,8 +2,7 @@ + VERSION=1.6 + + # CC = gcc +-CPPFLAGS=-DVERSION_STR=\"$(VERSION)\" -DUUCP_LOCK_DIR=\"/var/lock\" \ +- -DHIGH_BAUD ++CPPFLAGS=-DVERSION_STR=\"$(VERSION)\" -DUUCP_LOCK_DIR=\"/var/lock\" + CFLAGS = -Wall -g + + # LD = gcc |
