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.7.1
|
|
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=('53eb8082812f28386b491ea18caa4a51ac66ead87fa78d5584275c66f1335b8705fad266170dc2ed6ee9e5d1febcdf0869c37ed2f95b58c10a74faf4ad95e610')
|
|
|
|
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
|
|
}
|
|
|