Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Added ezlupdate, a useful program to track ezpublish translations #8943

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions Library/Formula/ezlupdate.rb
@@ -0,0 +1,21 @@
require 'formula'

class Ezlupdate < Formula
# ezlupdate is part of eZ Publish
url 'https://github.com/downloads/ezsystems/ezpublish/ezpublish_community_project-2011.10-with_ezc.tar.bz2'
version '2011.10'
homepage 'http://ezpedia.org/ez/ezlupdate'
md5 'd40cbcf714c1071ffb6ee2c1e4975282'

depends_on 'qt'

def install
Dir.chdir "support/ezlupdate-qt4.5/ezlupdate"
# Use the qmake installation done with brew
# because others installations can make a mess
system "#{HOMEBREW_PREFIX}/bin/qmake ezlupdate.pro"
system "make"
Dir.chdir "../../.."
bin.install ['bin/macosx/ezlupdate']
end
end