void-packages/srcpkgs/oil/template
bugcrazy d508afe4d0 oil: update to 0.9.3
Update template
2021-10-29 18:06:35 +02:00

35 lines
910 B
Bash

# Template file for 'oil'
pkgname=oil
version=0.9.3
revision=1
build_style=configure
configure_args="--prefix=/usr $(vopt_with readline)"
hostmakedepends="$(vopt_if readline readline-devel)"
makedepends="$hostmakedepends"
short_desc="Oil, a new unix shell"
maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
license="Apache-2.0"
homepage="https://www.oilshell.org"
distfiles="${homepage}/download/${pkgname}-${version}.tar.xz"
checksum=62f36072f69f3378e03b79d8d5255c1d136094ec11410db4f16ee82f1660efda
register_shell="/usr/bin/osh"
nocross="Build systems gets confused with host and cross toolchains/headers"
nostrip=yes
build_options="readline"
build_options_default="readline"
pre_build() {
# Remove the strip wrapper
rm -f "${XBPS_WRAPPERDIR}"/strip
}
do_install() {
# Install binaries
vbin _bin/oil.ovm
# Symlink osh, oshc to oil.ovm.
cd "${DESTDIR}"/usr/bin
ln -s oil.ovm osh
ln -s oil.ovm oshc
}