summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b40592ef187cd21ba49a1f4f358c5e0f99f34031 (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
# Maintainer: Loic Coyle <loic.coyle@hotmail.fr>

_pkgname=cuff
pkgname="${_pkgname}-git"
pkgver=r16.b3db6b0
pkgrel=1
pkgdesc='Query the Jackett search API from the command line.'
arch=('any')
url='https://github.com/loiccoyle/cuff'
license=('MIT')
depends=('curl' 'jq')
optdepends=('jackett: Use many torrent trackers with software that supports torznab/potato feeds.')
makedepends=('git')
source=("${_pkgname}::git+https://github.com/loiccoyle/cuff.git")
md5sums=('SKIP')

pkgver() {
  cd "${_pkgname}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd "${_pkgname}"
  install -D -m 755 cuff "${pkgdir}/usr/bin/cuff"
  install -D -m 644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
  install -D -m 644 completions/zsh "${pkgdir}/usr/share/zsh/site-functions/_cuff"
}