From a5c2e73ba30c769148056635676165a4265eac83 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 28 Jul 2012 00:02:21 +0000 Subject: Sat Jul 28 00:02:21 UTC 2012 --- community-testing/fish/PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ community-testing/fish/fish.install | 11 +++++++++++ 2 files changed, 47 insertions(+) create mode 100644 community-testing/fish/PKGBUILD create mode 100644 community-testing/fish/fish.install (limited to 'community-testing') diff --git a/community-testing/fish/PKGBUILD b/community-testing/fish/PKGBUILD new file mode 100644 index 000000000..b79fe66e6 --- /dev/null +++ b/community-testing/fish/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 74385 2012-07-26 06:57:15Z bpiotrowski $ +# Maintainer: Kaiting Chen +# Maintainer: Bartłomiej Piotrowski +# Contributor: Abhishek Dasgupta +# Contributor: Eric Belanger +# Contributor: Jan Fader + +pkgname=fish +pkgver=2.0b2 +pkgrel=1 +pkgdesc='Smart and user friendly shell intended mostly for interactive use' +arch=('i686' 'x86_64') +url='http://ridiculousfish.com/shell/' +license=('GPL2') +depends=('python') +makedepends=('doxygen') +install=fish.install +source=($pkgname-$pkgver.tar.gz::http://ridiculousfish.com/shell/files/fishfish.tar.gz) +md5sums=('ebe5fe17f6925b9142aadc8ebae5fba1') + +build() { + cd "$srcdir"/fishfish + autoconf + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --without-xsel + make +} + +package() { + cd "$srcdir"/fishfish + make DESTDIR="$pkgdir" install + + # compress man pages + find "$pkgdir"/usr/share/fish/man/ -type f | xargs gzip -9 +} diff --git a/community-testing/fish/fish.install b/community-testing/fish/fish.install new file mode 100644 index 000000000..765006f95 --- /dev/null +++ b/community-testing/fish/fish.install @@ -0,0 +1,11 @@ +post_install() { + grep -q '/usr/bin/zsh' etc/shells || echo '/usr/bin/zsh' >> etc/shells +} + +post_upgrade() { + post_install +} + +pre_remove() { + sed -i '/^\/usr\/bin\/fish/d' /etc/shells +} -- cgit v1.2.3-54-g00ecf