36 lines
922 B
Bash
36 lines
922 B
Bash
# Template file for 'oil'
|
|
pkgname=oil
|
|
version=0.20.0
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--prefix=/usr"
|
|
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="https://www.oilshell.org/download/oil-${version}.tar.xz"
|
|
checksum=42b85f52bbba4a3bb8e16f23fc394c4302bcfd9638f067f01c37d23f2ee449a0
|
|
register_shell="/usr/bin/osh /usr/bin/oil"
|
|
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
|
|
vman doc/osh.1
|
|
# Symlink osh, oil to oil.ovm.
|
|
cd "${DESTDIR}"/usr/bin
|
|
ln -s oil.ovm osh
|
|
ln -s oil.ovm oil
|
|
}
|