posh/PKGBUILD
fbt 9b2b7feae6 It's just 'posh' now
Signed-off-by: fbt <fbt@fleshless.org>
2017-01-03 23:36:05 +03:00

27 lines
557 B
Bash

# PKGBUILD
# % Trigger: 1437134783 %
pkgname="posh"
pkgver=0.12.6
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")
makedepends=( 'automake' )
source=("http://ftp.de.debian.org/debian/pool/main/p/posh/posh_${pkgver}.tar.xz")
build() {
cd "$pkgname"
autoreconf -fi
./configure --prefix=/usr
make
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/" install
}
sha1sums=('d69fdf0657ef6dd3ebd4fea8589c0b27d1e58a0c')