blob: 45ac4c78e4135908c27afa9833f5c812fddc20b9 (
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
|
# Maintainer: Loic Coyle <loic.coyle@hotmail.fr>
_pkgname=rofi-prowlet
pkgname="${_pkgname}-git"
pkgver=r4.dd271e2
pkgrel=1
pkgdesc='Rofi wrapper for prowlet, Use the Prowlarr search API to find torrents.'
arch=('any')
url='https://github.com/loiccoyle/rofi-prowlet'
license=('MIT')
depends=('jq' 'prowlet-git')
optdepends=('prowlarr: Usenet and torrent aggregator, similar to nzbhydra2 and jackett.')
makedepends=('git')
source=("${_pkgname}::git+https://github.com/loiccoyle/rofi-prowlet.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 rofi-prowlet "${pkgdir}/usr/bin/rofi-prowlet"
install -D -m 644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
|