21 lines
573 B
Ruby
21 lines
573 B
Ruby
class Pacapt < Formula
|
|
desc "Package manager in the style of Arch's pacman"
|
|
homepage "https://github.com/icy/pacapt"
|
|
url "https://github.com/icy/pacapt/archive/v3.0.4.tar.gz"
|
|
sha256 "3f62e211fcabfe951a1369bef684996fda65faceafcd2ceeb4b738cf43622c4d"
|
|
license "Fair"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "376eb885dea7254cd900e0f2ca415283b0f42c762c9bc4c332bbfb6f02084cbb"
|
|
end
|
|
|
|
def install
|
|
bin.mkpath
|
|
system "make", "install", "BINDIR=#{bin}", "VERSION=#{version}"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/pacapt", "-Ss", "wget"
|
|
end
|
|
end
|