38 lines
1.4 KiB
Bash
38 lines
1.4 KiB
Bash
# Template file for 'zeroinstall'
|
|
pkgname=zeroinstall
|
|
version=2.18
|
|
revision=2
|
|
build_style=gnu-makefile
|
|
make_install_target="install_system"
|
|
hostmakedepends="gettext ocaml opam m4 tar pkg-config which git"
|
|
makedepends="openssl-devel libcurl-devel gnupg glib-devel gtk+3-devel"
|
|
depends="gnupg desktop-file-utils hicolor-icon-theme xdg-utils"
|
|
short_desc="Cross-distribution software installation system"
|
|
maintainer="mobinmob <mobinmob@disroot.org>"
|
|
license="LGPL-2.1-only"
|
|
homepage="http://0install.net"
|
|
changelog="https://raw.githubusercontent.com/0install/0install/master/CHANGES.md"
|
|
distfiles="https://github.com/0install/0install/releases/download/v${version}/0install-${version}.tbz"
|
|
checksum=648c4b318c1a26dfcb44065c226ab8ca723795924ad80a3bf39ae1ce0e9920c3
|
|
nocross="opam is nocross"
|
|
disable_parallel_build=yes
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64*|aarch64*|riscv64*) ;;
|
|
*) broken="needs ocurl which wants ocamlopt";;
|
|
esac
|
|
|
|
pre_build() {
|
|
opam init -y --compiler=ocaml-system --disable-sandboxing
|
|
eval $(opam env)
|
|
# thx @kit-ty-kate for ocaml 5 fix.
|
|
opam pin add -yn git+https://github.com/ocaml-community/obus#03129dac072e7a7370c2c92b9d447e47f784b7c7
|
|
opam install -y yojson xmlm ounit lwt lwt_react obus ocurl sha dune lablgtk3 lwt_glib
|
|
}
|
|
|
|
zeroinstall-injector_package() {
|
|
build_style=meta
|
|
short_desc+=" - transitional dummy pkg"
|
|
depends="zeroinstall-${version}_${revision}"
|
|
}
|