desktop/fish/PKGBUILD

29 lines
674 B
Bash
Raw Normal View History

2017-02-18 20:38:13 +08:00
pkgname=fish
2017-07-16 23:44:39 +08:00
pkgver=2.6.0
2017-07-22 05:05:16 +08:00
pkgrel=2
2017-02-18 20:38:13 +08:00
pkgdesc='Smart and user friendly shell intended mostly for interactive use'
arch=('x86_64')
url='https://www.fishshell.com/'
license=('GPL2')
makedepends=('gcc' 'doxygen')
depends=('ncurses' 'gettext')
source=("https://github.com/fish-shell/fish-shell/archive/${pkgver}.tar.gz")
2017-07-16 23:44:39 +08:00
sha512sums=('9ee9dbfee84af142c152b7b33c66aa930400e789776f38767f24c36ef0fa93d5939f6c1be0f17e01231b588d0cdc4dd622257bd61043e576de495cda0d61067c')
2017-02-18 20:38:13 +08:00
prepare() {
cd fish-shell-${pkgver}
autoreconf
}
build() {
cd fish-shell-${pkgver}
./configure --prefix=/usr --sysconfdir=/etc
make
}
package() {
cd fish-shell-${pkgver}
make DESTDIR="${pkgdir}" install
}