From ed4b386313cd3252b1b6c01bdce662b0926ab859 Mon Sep 17 00:00:00 2001 From: Ivan Gonzalez Polanco Date: Tue, 8 Oct 2019 17:07:29 -0400 Subject: [PATCH] oil: update to 0.7.pre5 Remove license installation from template, according to `xlint`'s request of not intalling GPL nor Apache licenses. --- srcpkgs/oil/template | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/srcpkgs/oil/template b/srcpkgs/oil/template index 92a0ada7186..9813f4fd4fd 100644 --- a/srcpkgs/oil/template +++ b/srcpkgs/oil/template @@ -1,6 +1,6 @@ # Template file for 'oil' pkgname=oil -version=0.6.0 +version=0.7.pre5 revision=1 build_style=configure configure_args="--prefix=/usr $(vopt_with readline)" @@ -10,7 +10,7 @@ maintainer="Caleb JA " license="Apache-2.0" homepage="https://www.oilshell.org" distfiles="${homepage}/download/${pkgname}-${version}.tar.xz" -checksum=141e3a5c1997a696d65747966978aaa38921d77e303aad9e77b4ab4aedab84b7 +checksum=6c472c8bf2b35e7feadde54e89c3824709e56be4ea6aeed18cfc5c8a7c25f3ee register_shell="/usr/bin/osh" nocross="oil is nocross" nostrip=yes @@ -26,12 +26,10 @@ pre_build() { do_install() { # Install binaries vbin _bin/oil.ovm + # Add manpage + vman doc/osh.1 # Symlink osh, oshc to oil.ovm. cd "${DESTDIR}"/usr/bin ln -s oil.ovm osh ln -s oil.ovm oshc } - -post_install() { - vlicense LICENSE.txt -}