zero-install 2.8

Closes Homebrew/homebrew#42405.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Anders F Bjorklund 2015-08-02 23:25:29 +02:00 committed by Mike McQuaid
parent 15193f2855
commit 5a8bc4bf1c
2 changed files with 136 additions and 0 deletions

1
Aliases/0install Symbolic link
View file

@ -0,0 +1 @@
../Formula/zero-install.rb

135
Formula/zero-install.rb Normal file
View file

@ -0,0 +1,135 @@
class ZeroInstall < Formula
desc "Zero Install is a decentralised software installation system"
homepage "http://0install.net/"
url "https://downloads.sf.net/project/zero-install/0install/2.8/0install-2.8.tar.bz2"
sha256 "12de771be748bce9350c90bc4720029a566b078ceabd335af09386ac6a37df2b"
depends_on "pkg-config" => :build
depends_on "ocaml" => :build
depends_on "opam" => :build
depends_on "gtk+" => :optional
depends_on :gpg
# 0install.2.8 resources from https://github.com/ocaml/opam-repository.git
resource "easy-format" do # [required by yojson]
url "https://opam.ocaml.org/archives/easy-format.1.0.2+opam.tar.gz"
version "1.0.2"
sha256 "c2a04ab1084bc5ce1ec52a3aa320c825c22f8be527fb5f82d920a9d92a673cd3"
end
resource "biniou" do # [required by yojson]
url "https://opam.ocaml.org/archives/biniou.1.0.9+opam.tar.gz"
version "1.0.9"
sha256 "08e6a17a19fbe5e9da4c77d1e8c1bb05333f84ec8a634721a39c6c505ce51e0d"
end
resource "cppo" do # [required by yojson]
url "https://opam.ocaml.org/archives/cppo.1.1.2+opam.tar.gz"
version "1.1.2"
sha256 "35c1caddb249293c5a24f095e0dea85c670056083e30010078124b65e557a2d8"
end
resource "yojson" do
url "https://opam.ocaml.org/archives/yojson.1.1.8+opam.tar.gz"
version "1.1.8"
sha256 "20ce2c2f752b49695468b0bf66f17cf20219d7bca5a0b71a3fb89af500fb52f1"
end
resource "xmlm" do
url "https://opam.ocaml.org/archives/xmlm.1.2.0+opam.tar.gz"
version "1.2.0"
sha256 "518617e737730c89a04ca68ae927cb1510a027a9924df591df8575e386d810f0"
end
resource "ounit" do
url "https://opam.ocaml.org/archives/ounit.2.0.0+opam.tar.gz"
version "2.0.0"
sha256 "bc87d648a6186d7a708442a9dcb2197e9f0d5d8ba62f60daf18ae8b592b658ce"
end
resource "react" do
url "https://opam.ocaml.org/archives/react.1.2.0+opam.tar.gz"
version "1.2.0"
sha256 "690a1a7b18be21fa83876599639ddd3954c2a53d5cf1e13a76f2a140e1f9aa71"
end
resource "ppx_tools" do # [required by lwt]
url "https://opam.ocaml.org/archives/ppx_tools.0.99.2+opam.tar.gz"
version "0.99.2"
sha256 "0c5b9802de2005b55717ac78bffcead1ee11dd28f91fb32f7e3518a7d7d8c48a"
end
resource "lwt" do
url "https://opam.ocaml.org/archives/lwt.2.4.6+opam.tar.gz"
version "2.4.6"
sha256 "297eda984412d6cd231bea548da4ef2d8b08db5f1a0bc295d47ac993243005b5"
end
resource "extlib" do
url "https://opam.ocaml.org/archives/extlib.1.6.1+opam.tar.gz"
version "1.6.1"
sha256 "c76176916c39d4ccae82a34c33e694652c0c55d79eec8830dfddadb580b53773"
end
resource "ocurl" do
url "https://opam.ocaml.org/archives/ocurl.0.7.2+opam.tar.gz"
version "0.7.2"
sha256 "669c5142b7f4002521468b75ee254b269f0094c9a22d3381e94a440a6aa2d400"
end
if build.with? "gtk+"
resource "lablgtk" do
url "https://opam.ocaml.org/archives/lablgtk.2.18.3+opam.tar.gz"
version "2.18.3"
sha256 "f0b7ed0bd85f6cf4b4c5f81966f03763e76bb9f866f5172511ce48cf31fd433c"
end
end
resource "sha" do
url "https://opam.ocaml.org/archives/sha.1.9+opam.tar.gz"
version "1.9"
sha256 "d3cfda4cd6f79b01c6613219baa3e8548365c309952168b3539e0edce9370b40"
end
def install
opamroot = buildpath/"opamroot"
ENV["OPAMROOT"] = opamroot
ENV["OPAMYES"] = "1"
system "opam", "init", "--no-setup"
archives = opamroot/"repo/default/archives"
modules = []
resources.each do |r|
r.verify_download_integrity(r.fetch)
original_name = File.basename(r.url)
cp r.cached_download, archives/original_name
modules << "#{r.name}=#{r.version}"
end
system "opam", "install", *modules
system "opam", "config", "exec", "make"
inreplace "dist/install.sh", '"/usr/local"', prefix
inreplace "dist/install.sh", '"${PREFIX}/man"', man
system "make", "install"
end
test do
(testpath/"hello.py").write <<-EOS.undent
print("hello world")
EOS
(testpath/"hello.xml").write <<-EOS.undent
<?xml version="1.0" ?>
<interface xmlns="http://zero-install.sourceforge.net/2004/injector/interface">
<name>Hello</name>
<summary>minimal demonstration program</summary>
<implementation id="." version="0.1-pre">
<command name='run' path='hello.py'>
<runner interface='http://repo.roscidus.com/python/python'></runner>
</command>
</implementation>
</interface>
EOS
assert_equal "hello world\n", shell_output("#{bin}/0launch --console hello.xml")
end
end