2010-06-13 18:06:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Hllib <Formula
|
|
|
|
homepage 'http://nemesis.thewavelength.net/index.php?p=35'
|
|
|
|
url 'http://nemesis.thewavelength.net/files/files/hllib230.zip'
|
|
|
|
md5 '1fc568dc8ea2e293511b921628b5c26d'
|
|
|
|
version '2.3.0'
|
|
|
|
|
|
|
|
def install
|
|
|
|
# Library
|
|
|
|
cd 'HLLib' do
|
|
|
|
# Set perms so we can replace the strings
|
|
|
|
chmod 0777, 'Makefile'
|
2010-06-13 21:12:08 +00:00
|
|
|
inreplace 'Makefile' do |s|
|
|
|
|
# Set prefix correctly
|
|
|
|
s.gsub! '/usr/local', prefix
|
|
|
|
# Remove -soname directive
|
|
|
|
s.gsub! '-shared -Wl,-soname,libhl.so.2', '-shared -Wl'
|
|
|
|
# Ownership isn't needed here
|
|
|
|
s.gsub! %r{ -[og] root}, ''
|
|
|
|
# .dylib is the OS X equivalent of .so
|
|
|
|
s.gsub! 'libhl.so.$(HLLIB_VERS)', 'libhl.$(HLLIB_VERS).dylib'
|
|
|
|
s.gsub! '$(PREFIX)/lib/libhl.so.2', '$(PREFIX)/lib/libhl.2.dylib'
|
|
|
|
s.gsub! '$(PREFIX)/lib/libhl.so', '$(PREFIX)/lib/libhl.dylib'
|
|
|
|
end
|
2010-06-13 18:06:08 +00:00
|
|
|
# Install
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
# Extract tool
|
|
|
|
cd 'HLExtract' do
|
|
|
|
# Set prefix correctly
|
|
|
|
chmod 0777, 'Main.c'
|
|
|
|
# Fix limits header for OS X
|
|
|
|
inreplace 'Main.c', 'linux/limits.h', 'limits.h'
|
|
|
|
# OS X friendly binary name
|
|
|
|
inreplace 'Main.c', 'HLExtract.exe', 'hlextract'
|
|
|
|
# Make the binary build path and build
|
|
|
|
bin.mkpath
|
2010-06-13 20:47:56 +00:00
|
|
|
system ENV['CC'], 'Main.c', "-I#{include}", "-L#{lib}", '-lhl', '-o', bin+'hlextract'
|
2010-06-13 18:06:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|