24 lines
520 B
Bash
24 lines
520 B
Bash
# PKGBUILD
|
|
|
|
pkgname="posh"
|
|
pkgver=0.12.5
|
|
pkgrel=1
|
|
pkgdesc="A strictly POSIX.2 compliant shell, with minimal extensions. Based on ksh."
|
|
arch=('i686' 'x86_64')
|
|
url="https://packages.debian.org/unstable/posh"
|
|
license=("GPLv2")
|
|
source=("http://ftp.de.debian.org/debian/pool/main/p/posh/posh_${pkgver}.tar.xz")
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|
|
sha1sums=('ffd5228ecb0e6f614710c3360b866711b546c9e1')
|