blob: b24049268240496c05025580aaf139c65612b860 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer: Trizen <echo dHJpemVuQHByb3Rvbm1haWwuY29tCg== | base64 -d>
_pkgname=trizen
pkgname=trizen-git
pkgver=1.50
pkgrel=1
pkgdesc="Trizen AUR Package Manager: A lightweight wrapper for AUR (-git version)."
arch=('any')
url="https://github.com/trizen/${_pkgname}"
license=('GPL3')
provides=('trizen')
conflicts=('trizen')
depends=(
'git'
'pacutils'
'perl>=5.20.0'
'perl-libwww'
'perl-term-ui'
'pacman'
'perl-json'
'perl-data-dump'
'perl-lwp-protocol-https'
'perl-term-readline-gnu'
)
optdepends=(
'perl-json-xs: faster JSON deserialization'
#'perl-term-readline-gnu: better STDIN support'
)
source=("git://github.com/trizen/${_pkgname}.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --always | sed -e 's|-|.|g'
}
package() {
cd "$_pkgname"
install -m 755 -D "$_pkgname" "$pkgdir/usr/bin/${_pkgname}"
install -m 644 -D "zsh.completion" "$pkgdir/usr/share/zsh/site-functions/_trizen"
install -m 644 -D "bash.completion" "$pkgdir/usr/share/bash-completion/completions/trizen"
install -m 644 -D "fish.completion" "$pkgdir/usr/share/fish/vendor_completions.d/trizen.fish"
}
|