1SUMMARY="Additional completion definitions for Zsh"
2DESCRIPTION="This projects aims at gathering/developing new completion scripts that are not \
3available in Zsh yet. The scripts may be contributed to the Zsh project when stable enough."
4HOMEPAGE="https://github.com/zsh-users/zsh-completions"
5COPYRIGHT="1992-2020 The Zsh Development Group"
6LICENSE="ZSH"
7REVISION="1"
8SOURCE_URI="https://github.com/zsh-users/zsh-completions/archive/refs/tags/$portVersion.tar.gz"
9CHECKSUM_SHA256="811bb4213622720872e08d6e0857f1dd7bc12ff7aa2099a170b76301a53f4fbe"
10SOURCE_DIR="zsh-completions-$portVersion"
11
12ARCHITECTURES="all !x86_gcc2"
13SECONDARY_ARCHITECTURES="x86"
14
15PROVIDES="
16	zsh_completions$secondaryArchSuffix
17	"
18REQUIRES="
19	haiku$secondaryArchSuffix
20	cmd:zsh >= 5
21	"
22
23BUILD()
24{
25	true
26}
27
28INSTALL()
29{
30	mkdir -pv $docDir
31	cp -afv README.md $docDir
32
33	mkdir -pv $dataDir/zsh/site-functions
34	cp -afv src/* $dataDir/zsh/site-functions
35}
36