blob: 6271f29995df1f4df5e861651b7b3f6942245d05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Aethar <elliott.ashby88@gmail.com>
_pkgname=twitchmpv
pkgname="${_pkgname}-git"
pkgver=0.0.1.r1.c4f9760
pkgrel=1
pkgdesc="Wrapper bash script for streamlink in order to more simply watch twitch from the terminal."
arch=('any')
url="https://github.com/Aethar01/twitchmpv"
license=('BSD-2-Clause')
makedepends=('git')
depends=('streamlink' 'mpv')
provides=(twitchmpv)
source=("git+${url}.git")
package() {
cd "${srcdir}" || exit
cd "${_pkgname}" || exit
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
sha256sums=('SKIP')
|