homebrew-core/Formula/ohcount.rb
Matias Korhonen 2f4fbfa1e7 ohcount: update URLs
* Update the homepage to Github (http://git.io/Troz1g)
* Use the packaged source from GitHub
* Allow installation from HEAD

Closes Homebrew/homebrew#21257.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-17 16:25:53 -05:00

47 lines
1.1 KiB
Ruby

require 'formula'
class Ohcount < Formula
homepage 'https://github.com/blackducksw/ohcount'
url 'https://github.com/blackducksw/ohcount/archive/3.0.0.tar.gz'
sha1 '7f3fce48bf2a522c5262215699c36625ca6d3d33'
head 'https://github.com/blackducksw/ohcount.git'
depends_on 'ragel'
depends_on 'pcre'
depends_on 'libmagic' if build.head?
def patches
DATA
end
def install
# find Homebrew's libpcre
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
system "./build", "ohcount"
bin.install 'bin/ohcount'
end
end
__END__
--- a/build
+++ b/build
@@ -29,7 +29,7 @@ else
INC_DIR=/opt/local/include
LIB_DIR=/opt/local/lib
# You shouldn't have to change the following.
- CFLAGS="-fno-common -g"
+ #CFLAGS="-fno-common -g"
WARN="-Wall -Wno-parentheses"
SHARED="-dynamiclib -L$LIB_DIR -lpcre"
SHARED_NAME=libohcount.dylib
@@ -38,7 +38,7 @@ else
fi
# C compiler and flags
-cc="gcc -fPIC -g $CFLAGS $WARN -I$INC_DIR -L$LIB_DIR"
+cc="$CC $CFLAGS -O0 $WARN $CPPFLAGS $LDFLAGS"
# Ohcount source files
files="src/sourcefile.c \