From 262e77c444934f9202f4cb5987c78bc2b423db00 Mon Sep 17 00:00:00 2001 From: bugcrazy <39757967+bugcrazy@users.noreply.github.com> Date: Sun, 26 Jun 2022 00:14:49 -0300 Subject: [PATCH] oil: update to 0.11.0 --- srcpkgs/oil/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/oil/template b/srcpkgs/oil/template index 8866e01d7f94..6648b5255576 100644 --- a/srcpkgs/oil/template +++ b/srcpkgs/oil/template @@ -1,6 +1,6 @@ # Template file for 'oil' pkgname=oil -version=0.10.0 +version=0.11.0 revision=1 build_style=configure configure_args="--prefix=/usr $(vopt_with readline)" @@ -11,8 +11,8 @@ maintainer="MarcoAPC " license="Apache-2.0" homepage="https://www.oilshell.org" distfiles="${homepage}/download/${pkgname}-${version}.tar.xz" -checksum=cf7da9494ba9f0f101d27f0d0b5e248f8a54721ddeec13dd54652c9528580296 -register_shell="/usr/bin/osh" +checksum=e5e00ae776852c41233efc0a310219968523485680714d2dcec500af63d00208 +register_shell="/usr/bin/osh /usr/bin/oil" nocross="Build systems gets confused with host and cross toolchains/headers" nostrip=yes @@ -27,8 +27,9 @@ pre_build() { do_install() { # Install binaries vbin _bin/oil.ovm - # Symlink osh, oshc to oil.ovm. + vman doc/osh.1 + # Symlink osh, oil to oil.ovm. cd "${DESTDIR}"/usr/bin ln -s oil.ovm osh - ln -s oil.ovm oshc + ln -s oil.ovm oil }