Skip to content

Commit

Permalink
stashapp 0.27.2 (new formula)
Browse files Browse the repository at this point in the history
  • Loading branch information
not-me-for-sure authored Jan 10, 2025
1 parent de33141 commit a6465eb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Formula/s/stashapp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
class Stashapp < Formula
desc "Organizer for your porn"
homepage "https://stashapp.cc"
url "https://github.com/stashapp/stash/archive/refs/tags/v0.27.2.tar.gz"
sha256 "23402a61329d3c57f0d161e469b07a14a7672f799ff9d97bf082c1b67ace2dea"
license "AGPL-3.0-only"

depends_on "go" => :build
depends_on "node" => :build
depends_on "yarn" => :build
depends_on "ffmpeg"

def install
ENV.deparallelize
system "make", "release"
bin.install "stash"
bin.install "phasher"
end

service do
run [opt_bin/"stash", "--nobrowser"]
keep_alive true
end

test do
system "#{bin}/stash", "-v"
end
end

0 comments on commit a6465eb

Please sign in to comment.