# Maintainer: Yigit Sever # Contributor: Qontinuum # Contributor: timetoplatypus # Contributor: andychu pkgname=osh pkgver=0.9.6 pkgrel=1 pkgdesc="Oil Shell - A bash-compatible UNIX shell written in Python" arch=('any') url="https://www.oilshell.org/" license=("Apache") options=(!strip) optdepends=("readline: interactive features") source=("https://www.oilshell.org/download/oil-$pkgver.tar.xz") sha256sums=('e1c7d1cac276d36cb5f7de9307fee3be558ee4adaf349ef422322400d5c8a5c4') prepare() { mkdir -p tmp sed 's/TMP=${TMPDIR:-\/tmp}/TMP=..\/tmp/' -i "oil-$pkgver/configure" } build() { cd "oil-$pkgver" ./configure --prefix="/usr" make $MAKEFLAGS } package() { cd "oil-$pkgver" DESTDIR="$pkgdir/" ./install }