aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorGeorge Kulakowski2011-03-20 22:12:05 -0400
committerAdam Vandenberg2011-03-22 10:04:43 -0700
commitd4c021b4f4a894363b93f98341482574963153a8 (patch)
tree4ef99bd8e8438ee88ef0c15c421cc530e1e3445f /Library/Formula
parent790c5b2be0bbc5140cd617d800ff55baa94df691 (diff)
downloadhomebrew-d4c021b4f4a894363b93f98341482574963153a8.tar.bz2
lolcode: patch was applied in HEAD upstream
The change in the patch made it upstream: https://github.com/justinmeza/lci/commit/0aa0132d Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lolcode.rb23
1 files changed, 1 insertions, 22 deletions
diff --git a/Library/Formula/lolcode.rb b/Library/Formula/lolcode.rb
index 23100317c..48ebd2f96 100644
--- a/Library/Formula/lolcode.rb
+++ b/Library/Formula/lolcode.rb
@@ -4,12 +4,7 @@ class Lolcode < Formula
homepage 'http://www.icanhaslolcode.org/'
url 'https://github.com/justinmeza/lci/tarball/v0.9.2'
head 'git://github.com/justinmeza/lolcode.git'
- md5 '04493a3e491723d2928eb37cd90bbf54'
-
- # Makefile 'lci' target depends on the compiler flag '-lm'
- def patches
- DATA
- end unless ARGV.build_head?
+ md5 'bb757687aabea302351cbbce77e01c26'
def install
inreplace 'Makefile' do |s|
@@ -28,19 +23,3 @@ class Lolcode < Formula
end
end
end
-
-
-__END__
-diff --git a/Makefile b/Makefile
-index ff3df8c..5fdedb5 100644
---- a/Makefile
-+++ b/Makefile
-@@ -11,7 +11,7 @@ testdir = ./test
-
- all: $(TARGET)
-
--$(TARGET): $(OBJS) $(LIBS)
-+$(TARGET): $(OBJS)
- $(CC) $(CPPFLAGS) -o $(TARGET) $(OBJS) $(LIBS)
-
- pedantic: $(OBJS) $(LIBS)