posh/PKGBUILD

27 lines
573 B
Bash
Raw Permalink Normal View History

2016-01-16 11:05:23 +00:00
# PKGBUILD
2015-07-17 12:06:27 +00:00
# % Trigger: 1437134783 %
2015-06-01 13:15:16 +00:00
pkgname="posh"
pkgver=0.14.1
2015-06-01 13:15:16 +00:00
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")
2015-07-17 12:04:40 +00:00
makedepends=( 'automake' )
2015-06-01 13:15:16 +00:00
source=("http://ftp.de.debian.org/debian/pool/main/p/posh/posh_${pkgver}.tar.xz")
build() {
cd "$pkgname-$pkgver"
2016-01-16 11:13:16 +00:00
autoreconf -fi
2015-06-01 13:15:16 +00:00
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
2015-06-01 13:15:16 +00:00
make DESTDIR="$pkgdir/" install
}
sha1sums=('c5d648f07b9571aefb406aeefaaeda4745013a34')