void-packages/srcpkgs/oil/template
UsernameRandomlyGenerated b479adebed oil: update to 0.8.7, don't pretend we are using system python.
Closes: #28293 [via git-merge-pr]
2021-02-04 03:15:47 -03:00

34 lines
906 B
Bash

# Template file for 'oil'
pkgname=oil
version=0.8.7
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="Orphaned <orphan@voidlinux.org>"
license="Apache-2.0"
homepage="https://www.oilshell.org"
distfiles="${homepage}/download/${pkgname}-${version}.tar.xz"
checksum=29c5eed6efccbef6c22dbe5aec3d3d36f7c93da7a8d1cf19fc2cee93b5d1db73
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
}