summaryrefslogtreecommitdiff
path: root/community/fish/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/fish/PKGBUILD
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/fish/PKGBUILD')
-rw-r--r--community/fish/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/community/fish/PKGBUILD b/community/fish/PKGBUILD
deleted file mode 100644
index dbd808f40..000000000
--- a/community/fish/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 92181 2013-06-02 13:25:12Z bpiotrowski $
-# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
-# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
-# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
-# Contributor: Eric Belanger <eric@archlinux.org>
-# Contributor: Jan Fader <jan.fader@web.de>
-
-pkgname=fish
-pkgver=2.0.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=('python2' 'inetutils')
-makedepends=('doxygen' 'python')
-install=fish.install
-source=(fish-$pkgver.tar.gz::http://fishshell.com/files/$pkgver/fish.tar.gz)
-md5sums=('fe5907e6af61607d4128ce891a1f6501')
-
-build() {
- set -x
- cd fish
- autoconf
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --without-xsel
- make
-}
-
-package() {
- cd fish
- make DESTDIR="$pkgdir" install
-
- # use python2
- find "$pkgdir"/usr/share/fish/tools/ -type f -exec sed -e "1s|python|python2|" -i {} \;
-}