summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 31603ad70ec774370c1eae9fa9dd4cbe9fce7f64 (plain)
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
28
29
30
31
32
# Maintainer: Andrii Burkivskyi <buryk212@gmail.com>
pkgname=zsh-extract-git
_gitname=zsh-extract
pkgver=r2.85ee9a2
pkgrel=1
pkgdesc="This plugin defines a function called extract that extracts the archive file you pass it, and it supports a wide variety of archive filetypes."
arch=(any)
url='https://github.com/le0me55i/zsh-extract'
license=(custom:MIT)
depends=(zsh)
makedepends=(git)
provides=(zsh-extract)
conflicts=(zsh-extract)
source=('git://github.com/le0me55i/zsh-extract')
install=zsh-extract-git.install
sha256sum=('SKIP')

pkgver() {
	cd "$_gitname"
	commit=$(git rev-list --count master)
	hash=$(git rev-parse --short HEAD)
	echo "r$commit.$hash"
}

package() {
	cd "$_gitname"

	install -Dm644 extract.plugin.zsh "$pkgdir"/usr/share/zsh/plugins/"$_gitname"/extract.plugin.zsh
	install -Dm644 _extract "$pkgdir"/usr/share/zsh/site-functions/_extract
	install -Dm644 README.md "$pkgdir"/usr/share/doc/"$_gitname"/README.md
	install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
}