diff options
Diffstat (limited to 'community/fish/PKGBUILD')
-rw-r--r-- | community/fish/PKGBUILD | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/community/fish/PKGBUILD b/community/fish/PKGBUILD index 94b9c58b4..ddd26bb8c 100644 --- a/community/fish/PKGBUILD +++ b/community/fish/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 92181 2013-06-02 13:25:12Z bpiotrowski $ +# $Id: PKGBUILD 99431 2013-10-28 19:00:44Z bpiotrowski $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Abhishek Dasgupta <abhidg@gmail.com> @@ -6,8 +6,8 @@ # Contributor: Jan Fader <jan.fader@web.de> pkgname=fish -pkgver=2.0.0 -pkgrel=2 +pkgver=2.1.0 +pkgrel=1 pkgdesc='Smart and user friendly shell intended mostly for interactive use' arch=('i686' 'x86_64' 'mips64el') url='http://fishshell.com/' @@ -15,21 +15,19 @@ license=('GPL2') depends=('python2' 'inetutils') makedepends=('doxygen' 'python') install=fish.install -source=(fish-$pkgver.tar.gz::http://fishshell.com/files/$pkgver/fish.tar.gz) -md5sums=('fe5907e6af61607d4128ce891a1f6501') +source=(http://fishshell.com/files/$pkgver/fish-$pkgver.tar.gz) +md5sums=('3a29aebde522b8f52d9975d7423db99e') build() { - set -x - cd fish - autoconf + cd fish-$pkgver ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --without-xsel + --sysconfdir=/etc \ + --without-xsel make } package() { - cd fish + cd fish-$pkgver make DESTDIR="$pkgdir" install # use python2 |