mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
56 lines
1.7 KiB
Ruby
56 lines
1.7 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Opam < Autotools
|
|
description 'OCaml package manager'
|
|
homepage 'https://opam.ocaml.org/'
|
|
version '2.5.0'
|
|
license 'LGPL-2.1-with-linking-exception'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/ocaml/opam.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '80f5390b1872e2dfc9423e5bee0d8dcced5b2b48d21fa4c7929bc3276972dbbe',
|
|
armv7l: '80f5390b1872e2dfc9423e5bee0d8dcced5b2b48d21fa4c7929bc3276972dbbe',
|
|
i686: '33f8fdead10669d19bc320c8d832a73a5fd3fe654720b818730a0d2b98f770d3',
|
|
x86_64: 'b29ed962d59e82b7b3000af31ad2edead24682720aff68c1a568ea301ca44302'
|
|
})
|
|
|
|
depends_on 'bubblewrap' # L
|
|
depends_on 'gcc_lib' => :executable
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'ocaml' # R
|
|
depends_on 'rsync' => :build
|
|
depends_on 'zstd' => :executable
|
|
|
|
@OPAMROOT = "#{CREW_PREFIX}/share/opam"
|
|
|
|
autotools_configure_options '--with-vendored-deps'
|
|
|
|
autotools_build_extras do
|
|
File.write 'opam.sh', <<~OPAMEOF
|
|
export OPAMROOT=#{@OPAMROOT}
|
|
eval $(opam env --root=#{@OPAMROOT} --switch=default)
|
|
test -r #{@OPAMROOT}/opam-init/init.sh && . #{@OPAMROOT}/opam-init/init.sh &> /dev/null || true
|
|
OPAMEOF
|
|
end
|
|
|
|
autotools_install_extras do
|
|
FileUtils.install 'opam.sh', "#{CREW_DEST_PREFIX}/etc/bash.d/opam", mode: 0o644
|
|
end
|
|
|
|
def self.postinstall
|
|
# Segfaults in container, works on hardware.
|
|
return if CREW_IN_CONTAINER
|
|
|
|
system "opam init --root=#{@OPAMROOT} -y \
|
|
&& eval $(opam env --root=#{@OPAMROOT} --switch=default) \
|
|
&& opam option --global depext=false --root=#{@OPAMROOT} -y"
|
|
end
|
|
|
|
def self.postremove
|
|
Package.agree_to_remove(@OPAMROOT.to_s)
|
|
end
|
|
end
|