Add include and lib paths to hlextract build path

We haven't brew-linked yet so this stuff isn't yet in the build path.
master
Max Howell 2010-06-13 21:47:56 +01:00
parent 0c44bb4426
commit 0bf17668be
1 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@ class Hllib <Formula
def install
# Library
cd 'HLLib' do
# Set prefix correctly
inreplace 'Makefile', '/usr/local', prefix
# Set perms so we can replace the strings
chmod 0777, 'Makefile'
# Set prefix correctly
inreplace 'Makefile', '/usr/local', prefix
# Remove -soname directive
inreplace 'Makefile', '-shared -Wl,-soname,libhl.so.2', '-shared -Wl'
# Ownership isn't needed here
@ -36,7 +36,7 @@ class Hllib <Formula
inreplace 'Main.c', 'HLExtract.exe', 'hlextract'
# Make the binary build path and build
bin.mkpath
system ENV['CC'], 'Main.c', '-lhl', '-o', bin+'hlextract'
system ENV['CC'], 'Main.c', "-I#{include}", "-L#{lib}", '-lhl', '-o', bin+'hlextract'
end
end
end