# $Id: PKGBUILD 106894 2014-03-09 17:38:13Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Kaiting Chen # Contributor: Abhishek Dasgupta # Contributor: Eric Belanger # Contributor: Jan Fader pkgname=fish pkgver=2.1.0 pkgrel=2 pkgdesc='Smart and user friendly shell intended mostly for interactive use' arch=('i686' 'x86_64') url='http://fishshell.com/' license=('GPL2') depends=('bc' 'gcc-libs' 'inetutils' 'ncurses') optdepends=('python: for manual page completion parser and web configuration tool') install=fish.install source=(http://fishshell.com/files/$pkgver/fish-$pkgver.tar.gz) md5sums=('3a29aebde522b8f52d9975d7423db99e') build() { cd $pkgname-$pkgver ./configure --prefix=/usr \ --sysconfdir=/etc \ --without-xsel make } package() { make -C $pkgname-$pkgver DESTDIR="$pkgdir" install }