Skip to content

Instantly share code, notes, and snippets.

@dismine
Created November 16, 2020 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dismine/f5fa5eae636e186e8dd3d5fcb99c81bc to your computer and use it in GitHub Desktop.
Save dismine/f5fa5eae636e186e8dd3d5fcb99c81bc to your computer and use it in GitHub Desktop.
Valentina Project Homebrew forumula
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