mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
674 B
Bash
29 lines
674 B
Bash
pkgname=fish
|
|
pkgver=2.6.0
|
|
pkgrel=2
|
|
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")
|
|
sha512sums=('9ee9dbfee84af142c152b7b33c66aa930400e789776f38767f24c36ef0fa93d5939f6c1be0f17e01231b588d0cdc4dd622257bd61043e576de495cda0d61067c')
|
|
|
|
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
|
|
}
|
|
|