blob: 10cf332bc120966fab677fc5ca8aaea12262c7a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: memdmp <memdmp@estrogen.zone>
_pkgname="zuwu"
pkgname="zsh-$_pkgname"
pkgver=0.4.1
pkgrel=1
pkgdesc="Opinionated ZSH \"Microframework\" to give a baseline usable experience"
url="https://git.estrogen.zone/zuwu.git/"
arch=(any)
license=(MIT)
provides=()
conflicts=()
depends=(zsh)
optdepends=('zsh-syntax-highlighting: Syntax Highlighting, if no fast syntax highlighting is installed'
'zsh-autosuggestions: Fish-like Autosuggestions')
makedepends=(lzip uutils-coreutils)
source=("$_pkgname-$pkgver.tar.lz::https://git.estrogen.zone/zuwu.git/snapshot/$_pkgname-$pkgver.tar.lz")
sha512sums=('34ac4cab4b81a9446481ca793f8cfc4a071c8e24cbdc18bea2d895e5eb3eeaa2c26bf2e49d351616253c0b07ff17a8651ff3a2ad8d6dc226edaf04393d9c9b94')
build() {
return 0
}
package() {
mkdir -p "$pkgdir"
cd "$_pkgname-$pkgver"
PREFIX="$pkgdir/usr" ./install.zsh
}
|