Created
November 16, 2020 06:36
-
-
Save dismine/f5fa5eae636e186e8dd3d5fcb99c81bc to your computer and use it in GitHub Desktop.
Valentina Project Homebrew forumula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Valentina < Formula | |
head 'https://bitbucket.org/dismine/valentina/get/develop.zip' | |
homepage 'http://valentina-project.org' | |
# version "0.2.8" | |
depends_on 'qt5' => :build | |
depends_on 'ccache' => :build | |
depends_on 'xpdf' => :optional | |
depends_on :hg | |
def install | |
args = %W[ | |
-r | |
PREFIX=#{prefix} | |
] | |
system "qmake", "./", *args | |
system "make" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment