blob: dc301afe35546dc2990556174e7b4b5f6314cf12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: axzxc1236 <axzxc1236 [(@>>] users.noreply.github.com>
pkgname=twitch-dl-bin
pkgver=2.9.2
pkgrel=1
pkgdesc="Twitch video downloader that use multiple concurrent connections"
arch=(any)
url="https://github.com/ihabunek/twitch-dl"
license=('GPL3')
depends=('python' 'ffmpeg')
provides=('twitch-dl' 'twitch-dl-bin')
conflicts=('twitch-dl' 'twitch-dl-bin')
source=('https://github.com/ihabunek/twitch-dl/releases/download/2.9.2/twitch-dl.2.9.2.pyz')
sha256sums=('7b2544418f539ee956f6afa976cfca7dcf0c87aa4f50b07d0c81f3d1f0eccead')
noextract=('twitch-dl')
package() {
install -Dm644 "${srcdir}/twitch-dl.${pkgver}.pyz" "${pkgdir}/usr/bin/twitch-dl"
chmod +x ${pkgdir}/usr/bin/twitch-dl
}
|