Files
harbour-core/harbour/package/harbour.rb
Viktor Szakats a1322743ff 2012-10-31 17:30 UTC+0100 Viktor Szakats (harbour syenar.net)
* INSTALL
  * package/harbour.rb
  * package/mpkg_src_nightly.sh
  * package/mpkg_win_nightly.bat
  * package/updt_web_nightly.sh
  * website/changelog.html
  * website/faq/harbour17.html
  * website/faq/harbour27.html
  * website/index.html
  * website/menu/harbour-menu.js
    * reverted all changes regarding new repo address

  * contrib/hbformat/hbfmtcls.prg
    * reverted accidentally committed Maurizio's patch, 
      and left only the few minor changes regarding 
      'ALWAYS' indentation and external HBX support.

  * contrib/gtwvg/activex.prg
  * contrib/gtwvg/tests/activex.prg
  * contrib/gtwvg/tests/cuigdlgs.prg
  * contrib/gtwvg/tests/demowvg.prg
  * contrib/gtwvg/tests/demowvg1.prg
  * contrib/gtwvg/tests/demoxbp.prg
  * contrib/gtwvg/tests/dyndlgs.prg
  * contrib/gtwvg/tests/modal.prg
  * contrib/gtwvg/tests/tbrowser.prg
  * contrib/gtwvg/tests/utils.prg
  * contrib/gtwvg/tests/wvtcls.prg
  * contrib/gtwvg/tests/xbp.prg
    * minor follow ups
    * changed string delimiters to "
2012-10-31 16:33:10 +00:00

21 lines
505 B
Ruby

#
# $Id$
#
require 'formula'
class Harbour < Formula
url 'http://downloads.sourceforge.net/project/harbour-project/source/3.0.0/harbour-3.0.0.tar.bz2'
homepage 'harbour-project.sourceforge.net/'
sha1 '66c21d666ac24c45485179eeaa9f90458b552e92'
head 'https://harbour-project.svn.sourceforge.net/svnroot/harbour-project/trunk/harbour'
# depends_on 'pcre' if ARGV.include? '--with-pcre'
def install
ENV[ 'HB_INSTALL_PREFIX' ] = "#{HOMEBREW_PREFIX}"
system "make", "install"
end
end