mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-31 19:31:10 +02:00
https://github.com/zsh-users/zsh-syntax-highlighting Fish shell like syntax highlighting for Zsh
28 lines
816 B
Plaintext
28 lines
816 B
Plaintext
# Contributor: Dawid Dziurla <dawidd0811@gmail.com>
|
|
# Maintainer: Dawid Dziurla <dawidd0811@gmail.com>
|
|
pkgname=zsh-syntax-highlighting
|
|
pkgver=0.5.0
|
|
pkgrel=0
|
|
pkgdesc="Fish shell like syntax highlighting for Zsh"
|
|
url="https://github.com/zsh-users/zsh-syntax-highlighting"
|
|
arch="noarch"
|
|
license="BSD-3"
|
|
depends="zsh"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
options="!check" # no tests
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make install DESTDIR="$pkgdir" PREFIX="/usr" \
|
|
SHARE_DIR="$pkgdir/usr/share/zsh/plugins/$pkgname"
|
|
}
|
|
|
|
sha512sums="dd0dcb772add597eb6f04e9958fb960688a5a2e316d51792d573fbfe1fd43e5a63c0de2242f87837818f27d732d8872576978c950640c1d1eea92b7b01ae84b4 zsh-syntax-highlighting-0.5.0.tar.gz"
|