mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:57:19 +08:00
29 lines
674 B
Bash
29 lines
674 B
Bash
pkgname=fish
|
|
pkgver=2.7.0
|
|
pkgrel=1
|
|
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=('c2006dec05e0398c88a5d627017243e8bffefa0e48415b1242487f211f3948ba9fdd849502630f0f02823ad5263358d14588b8dc812947a21f22ed6fe3542d93')
|
|
|
|
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
|
|
}
|
|
|